-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (36 loc) · 1.21 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
[project]
name = "ezon-gpx"
authors = [{ name = "uiolee" }]
maintainers = [{ name = "uiolee" }]
description = "convert Ezon gpx files."
keywords = ["ezon", "gpx", "xml", "running_page"]
readme = "README.md"
license = { text = "MPL 2.0" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
'Intended Audience :: Healthcare Industry',
"Topic :: Text Processing :: Markup :: XML",
"Topic :: File Formats",
"Topic :: Utilities",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/uiolee/ezon-gpx"
Repository = "https://github.com/uiolee/ezon-gpx.git"
Issues = "https://github.com/uiolee/ezon-gpx/issues"
[project.scripts]
ezon-gpx = "cli:cli"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = 'no-local-version'