-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.62 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "checkamg"
version = "0.10.0"
description = "Automated discovery and curation of Auxiliary Metabolic Genes (AMGs), Auxiliary Regulatory Genes (AReGs), and Auxiliary Physiology Genes (APGs) encoded by viral genomes."
readme = {file = "README-pypi.md", content-type = "text/markdown"}
requires-python = ">=3.11, <3.13"
authors = [
{name = "James C. Kosmopoulos", email = "kosmopoulos@wisc.edu"}
]
license = {text = "GPL-3.0-or-later"}
keywords = ["bioinformatics", "metagenomics", "viromics", "genomics", "AMG", "phage"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"joblib>=1.5.1",
"lightgbm>=4.5.0",
"metapyrodigal>=1.4.1",
"numba>=0.61.2",
"numpy>=1.24, <2.3",
"pandas>=2.3.0",
"polars-u64-idx>=1.30.0",
"psutil>=7.0.0",
"pyarrow>=20.0.0",
"pyfastatools==2.5.0",
"pyhmmer==0.11.1",
"pyrodigal>=3.5.2",
"pyrodigal-gv>=0.3.2",
"pyyaml>=6.0",
"requests>=2.32",
"scikit-learn==1.7.2",
"snakemake==8.23.2",
"tqdm>=4.67.1"
]
[project.urls]
"Homepage" = "https://github.com/AnantharamanLab/CheckAMG"
[project.scripts]
checkamg = "CheckAMG.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["CheckAMG", "CheckAMG.scripts"]
[tool.setuptools.package-data]
"CheckAMG" = ["files/**/*"]
"CheckAMG.scripts" = ["*.smk"]