fixed setup

This commit is contained in:
Tristan Hearn
2013-04-22 10:03:10 -04:00
parent 8194aba553
commit 86814a2e9e
2 changed files with 49 additions and 13 deletions

44
.gitignore vendored Normal file
View 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

View File

@@ -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'],
)