-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 836 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 836 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
27
#!/usr/bin/python3
from setuptools import setup
setup(name='ggkbdd',
version='1',
description='A Gaming Keyboard emulation daemon',
long_description=open('README.md', 'r').read(),
url='http://gitlab.freedesktop.org/whot/ggkbdd',
packages=['ggkbdd'],
author='Peter Hutterer',
author_email='[email protected]',
license='GPL',
entry_points={
"console_scripts": [
'ggkbdd = ggkbdd.daemon:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
python_requires='>=3.6',
include_package_data=True,
)