-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (71 loc) · 1.78 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
[tool.poetry]
name = "overture_maps_geoparquet_package"
version = "0.1.2"
description = "A Python package for downloading and processing Overture Maps geospatial data with configurable bounding box extraction and data management."
authors = ["ediakatos <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
# the src directory
packages = [
{ include = "overture_maps_geoparquet_package", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
aiobotocore = "2.15.1"
aiohappyeyeballs = "2.4.3"
aiohttp = "3.10.9"
aioitertools = "0.12.0"
aiosignal = "1.3.1"
async-timeout = "4.0.3"
attrs = "24.2.0"
botocore = "1.35.23"
certifi = "2024.8.30"
click = "8.1.7"
frozenlist = "1.4.1"
fsspec = "2024.9.0"
geopandas = "1.0.1"
idna = "3.10"
jmespath = "1.0.1"
multidict = "6.1.0"
numpy = "2.1.2"
overturemaps = "0.9.0"
packaging = "24.1"
pandas = "2.2.3"
propcache = "0.2.0"
pyarrow = "17.0.0"
pyogrio = "0.10.0"
pyproj = "3.7.0"
python-dateutil = "2.9.0.post0"
pytz = "2024.2"
s3fs = "2024.9.0"
shapely = "2.0.6"
six = "1.16.0"
typing-extensions = "4.12.2"
tzdata = "2024.2"
urllib3 = "2.2.3"
wrapt = "1.16.0"
yarl = "1.14.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
pymarkdownlnt = "^0.9.23"
pytest = "^8.3.3"
ruff = "^0.6.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.ruff]
fix = true
target-version = "py310"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D104"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["D", "S101", "ANN201", "PLR2004"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.poetry.scripts]
overture-downloader = "src.downloader:download_overture_data"