forked from harmsm/PyCmdMessenger
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (16 loc) · 675 Bytes
/
setup.py
File metadata and controls
20 lines (16 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3
import sys
# Try using setuptools first, if it's installed
from setuptools import setup, find_packages
# Need to add all dependencies to setup as we go!
setup(name='PyCmdMessenger',
packages=['PyCmdMessenger'],
version='0.2.3',
description='Python interface for CmdMessenger arduino serial communication library',
author='Michael J. Harms',
author_email='harmsm@gmail.com',
url='https://github.com/harmsm/PyCmdMessenger',
download_url='https://github.com/harmsm/PyCmdMessenger/tarball/0.2.3',
zip_safe=False,
install_requires=["pyserial"],
classifiers=['Programming Language :: Python'])