forked from whot/ratbag-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
37 lines (33 loc) · 917 Bytes
/
setup.cfg
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
[metadata]
name = ratbag
version = 0.0.1
author = Peter Hutterer
author_email = [email protected]
description = Gaming mouse configuration daemon
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/libratbag/libratbag
project_urls =
Bug Tracker = https://github.com/libratbag/libratbag/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
License :: OSI Approved :: MIT License
license = MIT License
[options]
packages = find:
python_requires = >=3.6
include_package_data = true
install_requires =
attrs ==22.2.0
libevdev ==0.11
pyudev ==0.24.0
dasbus ==1.7
[options.entry_points]
console_scripts =
ratbagd = ratbag.cli.ratbagd_dasbus:main
ratbagcli = ratbag.cli.ratbagcli:ratbagcli
[options.package_data]
ratbag = devices/*.device
[mypy]
ignore_missing_imports = true