-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 939 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
[project]
name = "fgdb-to-gpkg"
version = "0.2.2"
description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages"
authors = [
{name = "Philip Orlando", email = "[email protected]"},
]
[project.dependencies]
fiona = "1.10.b2"
geopandas = "0.12.2"
[tool.poetry]
name = "fgdb-to-gpkg"
version = "0.2.2"
description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages"
authors = ["Philip Orlando <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
geopandas = "1.0"
shapely = "^2.0.1"
tqdm = "^4.65.0"
argparse = "^1.4.0"
fiona = "1.10b2"
gdal = "3.6.3"
numpy = "^1.26.0"
geodatasets = "^2024.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
pytest-mock = "^3.12.0"
geodatasets = "^2024.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"