-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 832 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='useftdi',
version='0.7.17',
description="""
A library of software drivers to interface with various
I2C IC's utilizing FTDI I2C dongles.
Requires Python 3.6.xx or later.
""",
url=r'https://github.com/TedKus/useftdi',
author='Ted Kus, Anna Giasson',
author_email=' ', license='None',
packages=find_packages(), zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python'
],
install_requires=[
'pyftdi',
],
)