-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (64 loc) · 1.91 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "growbikenet"
version = "0.14.1"
authors = [
{ name = "Michael Szell", email = "michael@szell.net"},
{ name = "Manuel Knepper"},
{ name = "Anastassia Vybornova"},
]
maintainers = [
{ name = "Michael Szell", email = "michael@szell.net"},
]
license = "AGPL-3.0-or-later"
readme = "README.md"
description = "BikeNetKit Python package to grow urban bicycle networks"
keywords = ["Bicycle network planning", "Networks", "OpenStreetMap", "Urban Planning", "Urban Mobility"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.12"
dependencies = [
"geopandas>=1",
"matplotlib",
"osmnx>=2",
"scipy",
"geojson",
"tqdm",
]
[project.urls]
Homepage = "https://bikenetkit.org/"
Documentation = "https://docs.bikenetkit.org/GrowBikeNet/"
Repository = "https://github.com/BikeNetKit/GrowBikeNet"
Issues = "https://github.com/BikeNetKit/GrowBikeNet/issues"
Changelog = "https://docs.bikenetkit.org/GrowBikeNet/changelog/"
[project.optional-dependencies]
test = ["pytest"]
doc = ["sphinx"]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F401"] # "Imported but unused: happens with packages
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.setuptools.packages.find]
exclude = [
"examples*",
"tests*",
"results",
"docs*",
"data*",
"scripts*",
]
namespaces = false