mirror of
https://github.com/thearn/Python-Arduino-Command-API.git
synced 2026-04-24 03:00:20 -04:00
fixed setup
This commit is contained in:
18
setup.py
18
setup.py
@@ -1,20 +1,12 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(name='Python Arduino Command API',
|
||||
version='',
|
||||
description="a light-weight Python library for communicating with Arduino microcontroller boards",
|
||||
long_description='',
|
||||
classifiers=[
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
],
|
||||
version='0.1',
|
||||
install_requires=['pyserial >= 2.6'],
|
||||
keywords='',
|
||||
description="a light-weight Python library for communicating with Arduino microcontroller boards",
|
||||
author='Tristan Hearn',
|
||||
author_email='tristanhearn@gmail.com',
|
||||
url='https://github.com/thearn/Python-Arduino-Command-API',
|
||||
url='https://github.com/thearn/pickle-gzip',
|
||||
license='Apache 2.0',
|
||||
packages=find_packages('Arduino'),
|
||||
package_dir = {'': 'Arduino'},
|
||||
include_package_data=True,
|
||||
zip_safe=False
|
||||
)
|
||||
packages=['Arduino'],
|
||||
)
|
||||
Reference in New Issue
Block a user