-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
38 lines (33 loc) · 959 Bytes
/
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
[project]
name = "joycond-cemuhook"
authors = [
{ name="João Ribeiro Bezerra", email="joaorb64@gmail.com" },
]
description = "Support for cemuhook's UDP protocol for joycond devices"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"evdev",
"pyudev",
"dbus-python",
"termcolor",
"PyGObject-stubs"
]
dynamic = ["version"]
[project.scripts]
joycond-cemuhook = "joycond_cemuhook:main"
[tool.setuptools]
package-data = { "joycond_cemuhook" = ["profiles/*"] }
[tool.setuptools-git-versioning]
enabled = true
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning<2", ]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/joaorb64/joycond-cemuhook"
"Bug Tracker" = "https://github.com/joaorb64/joycond-cemuhook/issues"