-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (18 loc) · 753 Bytes
/
setup.py
File metadata and controls
23 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
import sys
# Try using setuptools first, if it's installed
from setuptools import setup, find_packages
if not sys.version_info[0] == 3:
sys.exit("Sorry, Python 3 is required")
# Need to add all dependencies to setup as we go!
setup(name='PyCmdMessenger',
packages=['PyCmdMessenger'],
version='0.2.4',
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.4',
zip_safe=False,
install_requires=["pyserial"],
classifiers=['Programming Language :: Python'])