-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.18 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
[project]
name = "threedi-schema"
authors = [
{name = "Nelen & Schuurmans", email = "info@nelen-schuurmans.nl"},
]
description = "The schema of 3Di schematization files"
requires-python = ">=3.9"
keywords = []
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"GeoAlchemy2>=0.9,!=0.11.*",
"SQLAlchemy>=1.4",
"alembic>=1.8,<2",
]
dynamic = ["version", "readme"]
[project.urls]
Repository = "https://github.com/nens/threedi-schema"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
cli = ["click"]
[project.scripts]
threedi_schema = "threedi_schema.scripts:main"
[tool.setuptools.dynamic]
version = {attr = "threedi_schema.__version__"}
readme = {file = ["README.rst", "CHANGES.rst"]}
[tool.isort]
profile = "black"
force_alphabetical_sort_within_sections = true
[tool.pytest.ini_options]
addopts = "--cov --cache-clear"
norecursedirs = [
".venv",
"data",
"doc",
"etc",
"*.egg-info",
"misc",
"var",
"build",
"lib",
"include",
]
python_files = ["test_*.py"]
testpaths = ["threedi_schema"]
[tool.zest-releaser]
release = false
python-file-with-version = "threedi_schema/__init__.py"