-
Notifications
You must be signed in to change notification settings - Fork 364
/
pyproject.toml
64 lines (57 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
[project]
name = "prettymapp"
version = "0.4.0"
description = "Create beautiful maps from OpenStreetMap data"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Christoph Rieke", email = "[email protected]" }]
keywords = ["art", "map", "cartography", "osm", "streamlit"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers"
]
dependencies = [
"matplotlib>=3.9.2",
"osmnx>=2.0.0",
"pandas==2.2.3",
"pyogrio>=0.10.0",
]
[project.optional-dependencies]
streamlit = [
"streamlit",
"streamlit-image-select",
]
[dependency-groups]
dev = [
"black",
"pylint==3.1.0",
"mock",
"types-mock",
"pytest",
"pytest-pylint",
"pytest-sugar",
"pytest-mypy",
"mypy==1.9.0",
"mypy-extensions",
"twine",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# Specifically define package, doesn't know if prettymapp or cache
[tool.setuptools]
package-dir = {"" = "."}
include-package-data = false
license-files = ["LICENSES/*.txt"]
[tool.setuptools.packages.find]
where = ["."]
include = ["prettymapp*"]
[tool.setuptools.package-data]
prettymapp = ["fonts/PermanentMarker-Regular.ttf"]
[project.urls]
Homepage = "https://github.com/chrieke/prettymapp"
Changelog = "https://github.com/chrieke/prettymapp/changelog"