-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 950 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.1"]
build-backend = "setuptools.build_meta"
[project]
name = "staticat"
version = "0.0.5"
authors = [
{ name="Hannes Riebl", email="[email protected]" },
]
description = "Generate static open data catalogs according to the DCAT-AP.de standard"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Jinja2>=3.1",
"markdown-it-py>=3.0",
"openpyxl>=3.1",
"pandas>=2.2",
"pydantic>=2.8",
"rdflib>=7.0",
]
[project.optional-dependencies]
dev = [
"pre-commit>=3.7",
"pyinstaller>=6.9",
]
[project.scripts]
staticat = "staticat.__main__:main"
[project.urls]
Homepage = "https://github.com/hriebl/staticat"
Issues = "https://github.com/hriebl/staticat/issues"
[tool.isort]
profile = "black"