-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (31 loc) · 1 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
#!python3
import sys
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
README = f.read()
requirements = []
if sys.version_info < (3, 4):
requirements.append('enum34')
setup(
name='cue_sdk',
version='2.1.0',
description='Python wrapper for the CUE SDK',
long_description=README,
author='10se1ucgo',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Hardware',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='Corsair CUE Strafe Void Scimitar K95 K70 K68 K65 M65 Sabre RGB Keyboard Mouse',
packages=['cue_sdk'],
install_requires=requirements
)