-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.26 KB
/
pyproject.toml
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
[tool.poetry]
name = "cogclassifier"
version = "1.0.5"
description = "A tool for classifying prokaryote protein sequences into COG functional category"
authors = ["moshi"]
license = "MIT"
homepage = "https://github.com/moshi4/COGclassifier/"
repository = "https://github.com/moshi4/COGclassifier/"
readme = "README.md"
keywords = [
"COG",
"bioinformatics",
"genomics",
"functional-annotation",
"functional-analysis",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
include = ["tests"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=src --tb=line --cov-report=xml --cov-report=term"
testpaths = ["tests"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.27.1"
pandas = "^1.4.1"
altair = "^4.2.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
pydocstyle = "^6.1.1"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
COGclassifier = "cogclassifier.cogclassifier:main"
plot_cog_classifier_barchart = "cogclassifier.script.plot_cog_classifier_barchart:main"
plot_cog_classifier_piechart = "cogclassifier.script.plot_cog_classifier_piechart:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"