forked from kyokenn/rogdrv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (31 loc) · 835 Bytes
/
setup.py
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
#!/usr/bin/env python3
from setuptools import setup
readme = open('README.md').read()
setup(
name='rogdrv',
version='0.0.4',
description='ASUS ROG userspace driver',
url='https://github.com/kyokenn/rogdrv',
author='Kyoken',
author_email='[email protected]',
license='GPL',
long_description=readme,
entry_points={
'console_scripts': [
'rogdrv=rogdrv.__main__:rogdrv',
'rogdrv-config=rogdrv.__main__:rogdrv_config',
]
},
packages=[
'rogdrv',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GPL License',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
],
include_package_data=True,
zip_safe=False,
)