-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
53 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "argnorm" | ||
dynamic = ['version'] | ||
description = "Normalize antibiotic resistance genes (ARGs) results by using the ARO ontology (developed by CARD)." | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "ArgNorm Developers", email = "[email protected]" } | ||
] | ||
license = { text = "MIT" } | ||
requires-python = ">=3.7" | ||
keywords = ["bioinformatics", "antibiotic-resistance", "ontology"] | ||
dependencies = [ | ||
"pandas", | ||
"pronto" | ||
] | ||
classifiers = [ | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/BigDataBiology/argNorm" | ||
|
||
[project.optional-dependencies] | ||
dev = ["pytest"] | ||
|
||
[tool.setuptools] | ||
packages = ["argnorm", "argnorm.data"] | ||
include-package-data = true | ||
|
||
[tool.setuptools.package-data] | ||
"argnorm" = ["data/aro.obo", "data/*.tsv", "data/manual_curation/*.tsv"] | ||
|
||
[project.scripts] | ||
argnorm = "argnorm.cli:main" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "argnorm.argnorm_version.__version__"} |
This file was deleted.
Oops, something went wrong.