-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 753 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gpdconfig"
version = "1.0.0"
authors = [
{name = "James Churchill", email = "pelrun@gmail.com"},
]
description = "Configuration tool for GPD Win devices"
readme = "README.md"
keywords = ["gpd", "wincontrols"]
license = {file = "COPYING"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/pelrun/pyWinControls"
Repository = "https://github.com/pelrun/pyWinControls.git"
"Bug Tracker" = "https://github.com/pelrun/pyWinControls/issues"
[project.scripts]
gpdconfig = "gpdconfig.app:main"