-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.44 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
[build-system]
requires = ["setuptools>=65.6.3"]
build-backend = "setuptools.build_meta"
[project]
name = "hpo-toolkit"
description = "A toolkit for working with Human Phenotype Ontology in Python"
authors = [
{ name = "Daniel Danis", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["human phenotype ontology", "HPO", "library"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
dependencies = [
"numpy >= 1.23",
"certifi", # The latest version is the best.
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0, <9.0.0",
"ddt >= 1.6.0", # TODO: remove after finishing the migration to `pytest`!
]
docs = [
"sphinx>=7.0.0", "sphinx-copybutton>=0.5.0", "sphinx-rtd-theme>=1.3.0",
]
bench = [
'pandas >= 1.0.0, <3.0',
]
[project.urls]
homepage = "https://github.com/ielis/hpo-toolkit"
repository = "https://github.com/ielis/hpo-toolkit.git"
documentation = "https://ielis.github.io/hpo-toolkit/stable"
bugtracker = "https://github.com/ielis/hpo-toolkit/issues"
[tool.setuptools]
package-dir = { "" = "src" }
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "hpotk.__version__" }