-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
77 lines (71 loc) · 2.17 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
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
[tool.poetry]
name = "sample-annotator"
version = "0.1.0"
description = "NMDC Sample Annotator"
authors = [
"Chris Mungall <cjmungall@lbl.gov>",
]
license = "CC0 1.0 Universal"
readme = "README.md"
keywords = [
"microbiome",
"samples",
"metadata",
"linkml",
"nmdc"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
homepage = "https://microbiomedata.github.io/sample-annotator/"
repository = "https://github.com/microbiomedata/sample-annotator"
[tool.poetry.dependencies]
#funowl = "^0.2"
#uvicorn = "^0.30"
Sphinx = "^8.0"
bioregistry = "^0.11"
click-log = "^0.4"
diskcache = "^5.6"
git-root = "^0.1"
googlemaps = "^4.6.0"
linkml = "^1.7"
nmdc-schema = "^11.0"
numpy = "^2.2"
pandas = "^2.2"
python = "^3.10"
python-dotenv = "^1.0"
pyyaml = "^6.0" # to humor deptry
quantulum3 = { extras = ["classifier"], version = "^0.9.2" }
recommonmark = "^0.7.1"
sphinx-rtd-theme = "3.0"
[tool.poetry.dev-dependencies]
autopep8 = "^2.0"
black = "^24.0"
deptry = "^0.21.2"
pytest = "^8.0"
tox = "4.20"
matplotlib = "^3.9.2" # for notebooks/DataGood-NMDC-Code.ipynb
nltk = "^3.8" # for notebooks/DataGood-NMDC-Code.ipynb
seaborn = "^0.13" # for notebooks/DataGood-NMDC-Code.ipynb
sqlalchemy = "^2.0" # for notebooks/DataGood-NMDC-Code.ipynb
click = "^8.1" # recommended by deptry
jsonschema = "^4.21" # recommended by deptry
linkml-runtime = "^1.8" # recommended by deptry
pydantic = "^2.10" # recommended by deptry
requests = "^2.32.2" # recommended by deptry
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
annotate-sample = "sample_annotator.sample_annotator:cli"
sqlite_client_cli = "sample_annotator.clients.biosample_sqlite_client:cli"
rel_to_oxygen_example = "sample_annotator.rel_to_oxygen_example:cli"