mirror of
https://github.com/thearn/Python-Arduino-Command-API.git
synced 2026-01-10 23:18:08 -05:00
fixed setup
This commit is contained in:
44
.gitignore
vendored
Normal file
44
.gitignore
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
# IDE #
|
||||
#######
|
||||
*.wpr
|
||||
*.wpu
|
||||
|
||||
# Compiled source #
|
||||
###################
|
||||
*.com
|
||||
*.class
|
||||
*.dll
|
||||
*.exe
|
||||
*.o
|
||||
*.so
|
||||
|
||||
# Packages #
|
||||
############
|
||||
# it's better to unpack these files and commit the raw source
|
||||
# git has its own built in compression methods
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
# Logs and databases #
|
||||
######################
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
Icon?
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
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