-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.19 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
[tool.black]
line-length = 120
exclude = '''
/(
\.git
| venv
| \.venv
| env
| \.env
| _build
| build
| dist
)/
'''
[tool.ruff]
line-length = 120
src = ["src", "tests"]
[tool.poetry]
name = "kof-parser"
version = "0.1.2"
description = "A KOF file parser. Follows Norkart's KOF 2.0 specification from 2005."
license = "MIT"
maintainers = ["Jostein Leira <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/norwegian-geotechnical-institute/kof-parser"
repository = "https://github.com/norwegian-geotechnical-institute/kof-parser"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
]
packages = [
{ include = "kof_parser", from="src" },
]
[tool.poetry.dependencies]
python = ">=3.11,<4"
pydantic = "^2.10"
coordinate-projector = "^0.0.11"
charset-normalizer = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
mypy = "*"
bandit = "*"
safety = "*"
pip-licenses = "*"
ruff = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"