-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (69 loc) · 1.8 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
75
76
77
78
79
80
81
[tool.poetry]
name = "pysema"
version = "0.1.0"
description = "Overall parent of all packages involving semantic manipulation of RDF data."
authors = ["cedricdcc <[email protected]>",
"Opsci VLIZ <[email protected]>"]
maintainers = ["cedricdcc <[email protected]>"]
packages = [{include = "sema"}]
repository = "https://github.com/vliz-be-opsci/py-sema"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
rdflib = "^7.0.0"
validators = "^0.28.3"
urnparse = "^0.2.2"
jinja2 = "^3.1.4"
python-dateutil = "^2.9.0.post0"
setuptools = "*"
uritemplate = "^4.1.1"
urllib3 = "^2.2.2"
requests = "^2.32.3"
typeguard = "^4.3.0"
apscheduler = "^3.10.4"
pyshacl = "^0.26.0"
watchdog = "^4.0.1"
pyyaml = "^6.0.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
poetry = "*"
isort = "*"
black = "*"
flake8 = "*"
setuptools = "^70.1.0"
pandas = "^2.2.2"
xmlasdict = "^0.2.2"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pyyaml = "*"
pytest = "*"
coverage = "*"
python-dotenv = "*"
pytest-cov = "*"
[tool.poetry.scripts]
sema = "sema.__main__:main"
sema-bench = "sema.bench.__main__:main"
sema-conneg = "sema.commons.web.conneg_cli:main"
sema-get = "sema.discovery.__main__:main"
sema-harvest = "sema.harvest.__main__:main"
sema-query = "sema.query.__main__:main"
sema-subyt = "sema.subyt.__main__:main"
sema-syncfs = "sema.syncfs.__main__:main"
[build-system]
requires = ["setuptools","poetry"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["."]