-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.65 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
[tool.poetry]
name = "cnb-tools"
version = "0.3.2"
description = "Convenience tools/functions for challenges and benchmarking on Synapse.org"
license = "Apache-2.0"
authors = ["Sage CNB Team <[email protected]>"]
maintainers = [
"Verena Chung <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/Sage-Bionetworks-Challenges/cnb-tools"
documentation = "https://sage-bionetworks-challenges.github.io/cnb-tools"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.9.0"}
synapseclient = "^4.2.0"
[tool.poetry.scripts]
cnb-tools = "cnb_tools.main_cli:app"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Sage-Bionetworks-Challenges/cnb-tools/issues"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.14"
mkdocstrings = "^0.24.0"
mkdocstrings-python = "^1.7.5"
termynal = "^0.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"