-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.42 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
[project]
name = "threedi-modelchecker"
dynamic = ["version"]
description = "Checks validity of a 3Di schematisation"
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{ name = "Nelen & Schuurmans", email = "info@nelen-schuurmans.nl" },
]
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"Click",
"GeoAlchemy2>=0.9,!=0.11.*",
"SQLAlchemy>=1.4",
"threedi-schema==0.229.*"
]
[project.optional-dependencies]
rasterio = [
"rasterio>=1.3.10",
]
test = [
"factory_boy",
"pytest",
"pytest-asyncio",
"pytest-cov",
]
[project.scripts]
threedi_modelchecker = "threedi_modelchecker.scripts:cli"
[project.urls]
Repository = "https://github.com/nens/threedi-modelchecker"
[tool.setuptools]
packages = ["threedi_modelchecker"]
[tool.setuptools.dynamic]
version = {attr = "threedi_modelchecker.__version__"}
[tool.isort]
profile = "black"
force_alphabetical_sort_within_sections = true
[tool.pytest.ini_options]
norecursedirs = [
".venv",
"data",
"doc",
"etc",
"*.egg-info",
"misc",
"var",
"build",
"lib",
"include",
]
python_files = ["test_*.py"]
testpaths = ["threedi_modelchecker"]
[tool.zest-releaser]
release = false
python-file-with-version = "threedi_modelchecker/__init__.py"