forked from modulolabs/modulo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (22 loc) · 741 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (22 loc) · 741 Bytes
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
#!/usr/bin/python
from setuptools import setup
# To create a new tarball on github, run:
# git tag 0.1 -m "Creating tag for version 0.1"
# git push --tags origin master
#
# See http://peterdowns.com/posts/first-time-with-pypi.html for more pypi info
setup(name='modulo-python',
version='1.0',
description='Python support for Modulo hardware',
url='https://github.com/integer-labs/modulo-python',
download_url = 'https://github.com/integer-labs/modulo-python/tarball/0.1',
author='Erin Tomson',
author_email='erin@integerlabs.net',
packages=['modulo'],
entry_points={
'console_scripts': [
'modulo-list=modulo.scripts:list'
]
},
install_requires=['pyserial']
)