-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 798 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
from setuptools import setup, find_packages
setup(
name='PyDreamCheeky',
version='1.0.0b2',
url='https://github.com/Simon-Tang/py_dream_cheeky',
license='Unlicense',
author='Simon Tang',
author_email='[email protected]',
description='A convenient Python driver for Dream Cheeky\'s Big Red Button',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers'
],
keywords='dream cheeky big red button usb driver',
packages=find_packages(),
install_requires=['pyusb'],
)