-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
66 lines (62 loc) · 1.53 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
65
66
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["ezgpx*"]
exclude = ["docs*", "tests*"]
namespaces = true
[tool.setuptools.package-data]
"ezgpx.schemas.gpx_1_0" = ["*.xsd"]
"ezgpx.schemas.gpx_1_1" = ["*.xsd"]
"ezgpx.schemas.kml_2_2" = ["*.xsd"]
[project]
name = "ezgpx"
version = "0.2.1"
authors = [
{name = "Fabien ALLEMAND", email = "allemand.fabien@orange.fr"},
]
maintainers = [
{name = "Fabien ALLEMAND", email = "allemand.fabien@orange.fr"},
]
description = "Easy to use Python GPX library"
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"gpx",
"gpx-files",
"gpx-parser",
"gpx-reader",
"gpx-writer",
"gpx-converter",
"gpx-data",
"kml",
"kmz",
"fit"
]
license = {text = "GNU GPLv3"}
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
dependencies = [
"xmlschema",
"fitparse",
"pandas",
"matplotlib",
"basemap",
"gmplot",
"folium",
"pytest",
]
[project.urls]
Documentation = "https://ezgpx.readthedocs.io/en/latest/"
Repository = "https://github.com/FABallemand/ezGPX"
Issues = "https://github.com/FABallemand/ezGPX/issues"
PyPi = "https://pypi.org/project/ezgpx/"