-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
79 lines (67 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "TAtouScan"
description = " A command-line tool for identifying toxin-antitoxin (TA) systems in genomes and metagenomes. "
dynamic = ["version"]
authors = [
{name = "Jean Mainguy"},
]
maintainers = [
{name = "Jean Mainguy"},
]
readme = "README.md"
keywords = ["Bioinformatics", "Prokaryote", "Genomics", "Toxin antitoxin", "Metagenomics"]
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
license = {file="LICENCE"}
requires-python = ">=3.10"
dependencies = [
"pyfastx>=2.0.0,<3.0.0",
"typer>=0.15.0,<0.16.0",
"pyhmmer>=0.11.0,<0.12.0"
]
[project.optional-dependencies]
doc = [
"sphinx==6.2.1",
"sphinx_rtd_theme==1.2.2",
"readthedocs-sphinx-search==0.3.1",
"sphinx-autobuild==2021.3.14",
"myst-parser==1.0.0",
"docutils==0.18.1", #"myst-nb",
"nbsphinx==0.9.5",
"nbsphinx_link==1.3.0",
"sphinx-book-theme==1.0.1",
"sphinxcontrib.mermaid",
"sphinx_togglebutton==0.3.2"
]
dev = [
"pytest>=8.0.0",
"pytest-cov",
"black>=8.0.0"
]
#
[project.urls]
Repository = "https://github.com/JeanMainguy/TAtouScan"
Changelog = "https://github.com/JeanMainguy/TAtouScan/CHANGELOG.md"
Documentation = "https://tatouscan.readthedocs.io"
#
#
[project.scripts]
tatouscan = "tatouscan.main:app"
[tool.setuptools]
packages = ["tatouscan"]
[tool.setuptools.dynamic]
version = {attr = "tatouscan.__version__"}