-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (57 loc) · 1.66 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
[tool.poetry]
name = "prefixmaps"
version = "0.0.0"
description = "A python library for retrieving semantic prefix maps"
readme = "README.md"
authors = ["cmungall <[email protected]>"]
keywords = ["semantic web", "bioinformatics"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 1 - Planning",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.urls]
repository = "https://github.com/linkml/prefixmaps"
homepage = "https://github.com/linkml/prefixmaps"
"Bug Tracker" = "https://github.com/linkml/prefixmaps/issues"
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = ">=5.3.1"
curies = ">=0.5.3"
[tool.poetry.group.test.dependencies]
pytest = ">=6.2"
coverage = ">=6.4.4"
tox = "^4.11.3"
[tool.poetry.group.docs.dependencies]
myst-parser = "*"
sphinx = ">=7.0.0"
sphinx-autodoc-typehints = "*"
sphinx-click = "*"
sphinx-rtd-theme = "*"
[tool.poetry.group.refresh.dependencies]
click = ">=8.1.3"
requests = "^2.28.1"
bioregistry = "^0.11.10"
rdflib = "^6.2.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.black]
line-length = 100
target-version = ["py39", "py310"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
slurp-prefixmaps = "prefixmaps.ingest.etl_runner:cli"
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
reverse_relative = true