-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (88 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (88 loc) · 2.19 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "sssom"
version = "0.0.0"
description = "Operations on SSSOM mapping tables"
authors = [
{ name = "Chris Mungall", email = "cjmungall@lbl.gov" },
{ name = "Nicolas Matentzoglu", email = "nicolas.matentzoglu@gmail.com" },
{ name = "Harshad Hegde", email = "hhegde@lbl.gov" },
]
maintainers = [
{ name = "Nicolas Matentzoglu", email = "nicolas.matentzoglu@gmail.com" },
{ name = "Charles Tapley Hoyt", email = "cthoyt@gmail.com" },
{ name = "Damien Goutte-Gattat", email = "dgouttegattat@incenp.org" },
]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10,<4.0.0"
dependencies = [
"click>=8.1.6",
"curies>=0.10.23",
"linkml-runtime>=1.10.0",
"linkml>=1.10.0",
"packaging>=20.0",
"pandas>=2.0.0",
"sssom-schema==1.1.0a5",
"sparqlwrapper>=2.0.0",
"validators>=0.20.0",
"deprecation>=2.1.0",
"pyyaml>=6.0.1",
"rdflib>=7.1.3",
]
# see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#dependencies-optional-dependencies
[project.optional-dependencies]
networkx = [
"networkx>=3.1",
]
pansql = [
"pansql>=0.0.1",
]
scipy = [
"scipy",
]
docs = [
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
"mkdocs-click>=0.8.1",
]
rdflib-endpoint = [
"uvicorn",
"fastapi",
"rdflib-endpoint",
"httpx", # only used in tests, but this is small
]
[project.scripts]
sssom = "sssom.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = {version = ">=7.1.2"}
tox = {version = ">=3.25.1"}
[tool.uv]
constraint-dependencies = [
"starlette>=1.3.1",
"urllib3>=2.7.0",
"idna>=3.15",
"pymdown-extensions>=10.21.3",
"pytest>=9.0.3",
]
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
style = "pep440"
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312", "py313"]
[[tool.mypy.overrides]]
module = [
'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"