-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (46 loc) · 1.52 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
52
53
54
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streetviewdownloader"
description = "A Python library and utility to download Google StreetView images"
readme = "README.md"
authors = [
{ name = "Christoph Fink", email = "christoph.fink@helsinki.fi" }
]
dependencies = [
"ConfigArgParse",
"geopandas",
"numpy",
"pandas",
"pygeos",
"pyproj",
"pyrosm",
"pyxdg",
"requests",
"shapely"
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
keywords = []
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"contextily", "ipycache", "ipykernel", "ipyleaflet", "ipython",
"ipython-genutils", "ipywidgets", "nbsphinx", "Sphinx", "sphinx-rtd-theme",
"sphinxcontrib-applehelp", "sphinxcontrib-devhelp",
"sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp",
"sphinxcontrib-serializinghtml"
]
[project.urls]
Documentation = "https://streetviewdownloader.readthedocs.io/"
Repository = "https://github.com/DigitalGeographyLab/streetviewdownloader/"
"Change log" = "https://github.com/DigitalGeographyLab/streetviewdownloader/blob/main/CHANGELOG.md"
"Bug tracker" = "https://github.com/DigitalGeographyLab/streetviewdownloader/issues"
[tool.setuptools.dynamic]
version = {attr = "streetviewdownloader.__version__"}