-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (26 loc) · 966 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
from setuptools import setup
setup(name='ucdev',
version='0.0.3',
description='Library to access various I2C/SPI/GPIO-accessible chips over Cypress CY7C65211/3/5 USB-to-UART/I2C/SPI/GPIO bridge.',
long_description=open('README.md').read(),
url='https://github.com/tai/python-ucdev/',
author='Taisuke Yamada',
author_email='[email protected]',
license='MIT',
packages=['ucdev'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: System :: Hardware',
],
install_requires=[
'bitstring',
'cffi',
'IPython',
]
)