-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
28 lines (26 loc) · 851 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
#!/usr/bin/env python
from os.path import dirname, join
from setuptools import setup, find_packages
setup(
name='msi-perkeyrgb',
version='2.1',
description='Configuration tool for per-key RGB keyboards on MSI laptops.',
long_description=open(
join(dirname(__file__), 'README.md')).read(),
url='https://github.com/Askannz/msi-perkeyrgb',
author='Robin Lange',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'msi-perkeyrgb=msi_perkeyrgb.main:main',
],
},
package_data={'msi_perkeyrgb': ['protocol_data/presets/*.json']},
keywords=['msi', 'rgb', 'keyboard', 'per-key'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)