-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.51 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gpxtable"
description = "Generate tables of interesting GPX route and waypoint information"
authors = [
{ name="Paul Traina", email="[email protected]" },
]
keywords = ["GPS", "GPX", "Navigation", "Track", "Route", "Waypoints"]
dynamic = ["version"]
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Environment :: Console",
]
dependencies = [
"astral>=3.2",
"gpxpy>=1.6.2",
"markdown2>=2.4.13",
"python-dateutil>=2.9",
]
[project.optional-dependencies]
web = [
"flask>=3.0.0",
"requests>=2.32.3",
"validators>=0.32"
]
gunicorn = [
"flask>=3.0.0",
"gunicorn>=22.0.0",
"requests>=2.32.3",
"validators>=0.32"
]
tests = [
"pytest",
"pytest-flask",
"responses"
]
[project.urls]
"Homepage" = "https://github.com/pleasantone/gpxtable"
"Issues" = "https://github.com/pleasantone/gpxtable/issues"
"Repository" = "https://github.com/pleasantone/gpxtable"
"Documentation" = "https://gpxtable.readthedocs.io"
[project.scripts]
gpxtable = "gpxtable.cli:main"
[tool.setuptools.dynamic]
version = {attr = "gpxtable.__version__"}
[tool.setuptools.package-data]
gpxtable = ["static/*", "templates/*"]