-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (58 loc) · 1.49 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
[tool.poetry]
name = "pyrdfj2"
version = "0.0.5"
description = "Python wrapper on jinja SPARQL templating"
authors = [ "Marc Portier <[email protected]>",
"João Santos <[email protected]>"]
readme = "README.rst"
packages = [{include = "pyrdfj2"}]
license = "MIT"
repository = "https://github.com/vliz-be-opsci/pyrdfj2"
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
jinja2 = "*"
uritemplate = "*"
python-dateutil = "*"
validators = "^0.28.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
poetry = "*"
pre-commit = "*"
isort = "*"
black = "*"
flake8 = "*"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pyyaml = "*"
pytest = "*"
coverage = "*"
python-dotenv = "*"
pytest-cov = "*"
[tool.poetry.scripts]
pykg2tbl = "pyrdfj2.__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 = ["."]