-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
83 lines (73 loc) · 1.53 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
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "ahn_cli"
version = "0.2.1"
description = ""
authors = ["HideBa <baba.papa1120.ba@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "ahn_cli", from = "./" }]
include = [
"ahn_cli/**/*.py",
"ahn_cli/**/*.geojson",
"README.md",
"pyproject.toml",
"LICENSE",
]
[tool.poetry.scripts]
ahn_cli = "ahn_cli.main:main"
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
click = "^8.1.7"
geopandas = "^0.14.1"
shapely = "^2.0.2"
laspy = { extras = ["lazrs"], version = "^2.5.3" }
requests = "^2.31.0"
rasterio = "^1.3.9"
tqdm = "^4.66.2"
polyscope = "^2.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.12.0"
mypy = "^1.7.1"
pytest = "^7.4.3"
isort = "^5.13.2"
flake8 = "^6.1.0"
types-requests = "^2.31.0.20240125"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 78
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
files = ["ahn_cli/**/*.py"]
disallow_untyped_defs = true
disallow_incomplete_defs = true
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_calls = true
disallow_subclassing_any = true
no_implicit_optional = true
warn_redundant_casts = true
warn_untyped_decorators = true
warn_unused_ignores = true
strict_optional = true
strict_param_types = true
warn_untyped_fields = true
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ahn_cli", "ahn_cli.*"]