-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
71 lines (62 loc) · 1.59 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
[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"
Click = "*"
SPARQLWrapper = ">=1.8.2"
Sphinx = "*"
bmt = "^1.4.0"
cachetools = "^5.0.0"
deprecation = "^2.1.0"
docker = "^6.0.0"
docutils = ">=0.18.1"
ijson = "^3.1.3"
inflection = "^0.5.1"
jsonlines = "^4.0.0"
jsonstreams = "^0.6.0"
linkml = "^1.7.7"
linkml-runtime = "^1.7.5"
mypy = "*"
neo4j = ">=4.4.10"
networkx = "*"
ordered-set = "^4.0.2"
pandas = ">1.0.3"
prefixcommons = "^0.1.4"
prologterms = "^0.0.6"
pytest = "*"
python-dateutil = "^2.8.1"
pyyaml = "*"
rdflib = ">=6.0.0"
recommonmark = "*"
shexjsg = "*"
stringcase = "^1.2.0"
terminaltables = "^3.1.0"
tox = "^4.13.0"
validators = "^0.20.0"
pyarrow = "^15.0.2"
[tool.poetry.dev-dependencies]
sphinx-rtd-theme = "*"
sphinx-click = "*"
[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"
[tool.poetry.scripts]
kgx = "kgx.cli:cli"