forked from biolink/kgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (58 loc) · 1.48 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
[tool.poetry]
name = "kgx"
version = "0.0.0"
description = "A Python library and set of command line utilities for exchanging Knowledge Graphs (KGs) that conform to or are aligned to the Biolink Model."
authors = ["Deepak Unni <[email protected]>", "Richard Bruskiewich <[email protected]>", "Sierra Moxon <[email protected]>"]
license = "BSD"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"
]
packages = [
{ include = "kgx" }
]
[tool.poetry.dependencies]
python = "^3.9"
linkml = "^1.4"
linkml-runtime = "^1.4"
Sphinx = "*"
python-dateutil = "^2.8.1"
prefixcommons = "^0.1.4"
docutils = "^0.18.1"
networkx = "*"
SPARQLWrapper = "^1.8.2"
pandas = "^1.0.3"
pytest = "*"
mypy = "*"
rdflib = "^6.0.0"
Click = "*"
neo4j = "^4.4.10"
pyyaml = "*"
prologterms = "^0.0.6"
shexjsg = "*"
terminaltables = "^3.1.0"
stringcase = "^1.2.0"
validators = "^0.20.0"
cachetools = "^5.0.0"
sphinx-rtd-theme = "*"
sphinx-click = "*"
ordered-set = "^4.0.2"
docker = "^5.0.3"
jsonlines = "^3.1.0"
jsonstreams = "^0.6.0"
ijson = "^3.1.3"
deprecation = "^2.1.0"
recommonmark = "*"
tox = "^3.28.0"
tox-docker = "*"
bmt = "^1.0.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"