-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
74 lines (63 loc) · 1.67 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
[tool.poetry]
name = "sssom"
version = "0.0.0"
description = "Operations on SSSOM mapping tables"
authors = [
"Chris Mungall <[email protected]>",
"Nicolas Matentzoglu <[email protected]>",
"Harshad Hegde <[email protected]>"
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0.0"
click = ">=8.1.6"
curies = ">=0.7.3"
linkml-runtime = "^1.7.5"
linkml = ">1.7.10"
pandas = ">1.0.3"
pansql = { version = ">=0.0.1", extras = ["pansql"] }
sssom-schema = "^1.0.0"
networkx = { version = ">=3.1", extras = ["networkx"] }
sparqlwrapper = ">=2.0.0"
validators = ">=0.20.0"
deprecation = "^2.1.0"
pyyaml = "^6.0.1"
rdflib = ">=6.0.0"
scipy = {version = "*", extras = ["scipy"]}
importlib-resources = "^6.1.1"
[tool.poetry.group.dev.dependencies]
pytest = {version = ">=7.1.2"}
tox = {version = ">=3.25.1"}
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = {version = ">=6.1.3"}
sphinx-rtd-theme = {version = ">=1.0.0"}
sphinx-autodoc-typehints = {version = ">=1.2.0"}
sphinx-click = {version = ">=4.3.0"}
myst-parser = {version = ">=0.18.1"}
[tool.poetry.scripts]
sssom = "sssom.cli:main"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
style = "pep440"
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310"]
[[tool.mypy.overrides]]
module = [
'sssom.sssom_datamodel',
'sssom.cliquesummary'
]
ignore_errors = true
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
include_trailing_comma = true
reverse_relative = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"