-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 1.48 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "osmh3nx"
version = "0.1.0b1"
description = "Hexagonal H3 routing, drivesheds, and scalable GIS network analysis with OpenStreetMap networks."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.11"
authors = [
{ name = "Alex Cooper" },
{ email = "jacooper1317@gmail.com" }
]
keywords = [
"h3",
"openstreetmap",
"osmnx",
"routing",
"driveshed",
"geospatial",
"network-analysis",
"GIS",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"geopandas",
"h3",
"networkx",
"numpy",
"osmnx",
"pandas",
"platformdirs",
"pyproj",
"shapely>=2.0",
"scikit-learn",
]
[project.urls]
Homepage = "https://github.com/ccaoa/osmh3nx"
Repository = "https://github.com/ccaoa/osmh3nx"
Issues = "https://github.com/ccaoa/osmh3nx/issues"
[project.optional-dependencies]
development = [
"black",
"pip-tools",
"pytest",
]
typecheck = [
"pandas-stubs",
"types-geopandas",
"types-networkx",
"types-shapely",
]
[project.scripts]
osmh3nx-driveshed = "osmh3nx.cli.driveshed:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]