-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (35 loc) · 862 Bytes
/
setup.py
File metadata and controls
executable file
·38 lines (35 loc) · 862 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
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.0.3'
setup(
name='msikeys',
version=VERSION,
author='Mark Riley',
author_email='mark@markriley.net',
url='https://github.com/markrileybot/python-msikeys',
license='MIT',
description=open('README.md').readline(),
long_description=open('README.md').read(),
download_url='https://github.com/markrileybot/python-msikeys/tarball/%s' % VERSION,
scripts=[
'bin/msikeys-config.py',
'bin/msikeys-init.py'
],
packages=[
# library
'msikeys',
# gui
'msikeys.ui',
],
install_requires=[
'hidapi >= 0.7.99',
'iniparse >= 0.4',
],
extras_require={
'wxWidgetsApp': ['wxpython >= 3.0.2'],
},
keywords=[
'MSI', 'Keyboard', 'Backlight'
],
zip_safe=True
)