-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
38 lines (33 loc) · 890 Bytes
/
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
[tool.poetry]
name = "overturemapsdownloader"
version = "0.1.9"
description = "Overture Maps Downloader simplifies geospatial data manipulation"
authors = ["Youssef-Harby <[email protected]>"]
readme = "README.md"
include = ["config.yml"]
[tool.poetry.scripts]
OMDownloader = "overturemapsdownloader.main:app"
[tool.poetry.dependencies]
python = "^3.10"
typer = {extras = ["all"], version = "^0.12.3"}
jupyter = "^1.0.0"
dask-geopandas = "^0.3.1"
pyarrow = "^15.0.2"
adlfs = "^2024.4.0"
duckdb = "^0.10.1"
geopandas = "^0.14.3"
shapely = "^2.0.4"
gdal = "3.8.5"
fiona = "^1.9.6"
fastparquet = "^2024.2.0"
s3fs = "^2024.3.1"
dask = {extras = ["complete", "dataframe"], version = "^2024.4.1"}
pyproj = "^3.6.1"
[tool.poetry.extras]
gdal_support = ["gdal"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
create = true
in-project = true