-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.26 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
[project]
name = "fgdb-to-gpkg"
version = "0.3.2"
description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages"
authors = [
{ name = "Philip Orlando", email = "[email protected]" },
{ name = "Brandon Istenes", email = "[email protected]" },
]
[project.urls]
Repository = "https://github.com/philiporlando/fgdb_to_gpkg"
Issues = "https://github.com/philiporlando/fgdb_to_gpkg/issues"
[project.dependencies]
fiona = "1.10.b2"
geopandas = "0.12.2"
[tool.poetry]
name = "fgdb-to-gpkg"
version = "0.3.2"
description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages"
authors = [
"Philip Orlando <[email protected]>",
"Brandon Istenes <[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"
pyogrio = "^0.10.0"
pandas = "^2.2.3"
[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"
[tool.poetry.scripts]
fgdb-to-gpkg = "fgdb_to_gpkg:main"