forked from osm-flex/osm-flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 915 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
39
40
[build-system]
requires = ["setuptools>=64.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "osm-flex"
version = "0.1.0"
maintainers = [
{ name = "Elco Koks", email = "[email protected]" },
]
description = "Python package for flexible data extraction from OpenStreetMap"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
]
license = {text = "GPL-3.0"}
keywords = ["OpenStreetMap"]
dependencies = [
"cartopy",
"geopandas",
"gdal",
"numpy",
"shapely>=2.0",
"pandas",
"tqdm",
]
[tool.setuptools.package-data]
"*" = ["*.ini"]
[project.optional-dependencies]
tests = ["pytest"]
docs = ["jupyter"]
[project.urls]
"Repository" = "https://github.com/ElcoK/osm-flex"
"Bug Tracker" = "https://github.com/ElcoK/osm-flex/issues"