-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1020 Bytes
/
setup.py
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
26
27
28
29
30
31
32
33
from setuptools import setup
VERSION = "0.1.0"
setup(
name='rr-cilantro',
version=VERSION,
url='https://github.com/RedRiverSoftware/cilantro/',
author='Red River Software',
author_email='[email protected]',
description='A CamJam Edukit 3 Wrapper',
long_description=open('README.md').read(),
packages=['cilantro'],
include_package_data=True,
zip_safe=False,
platforms='any',
python_requires='>=3.4',
keywords=['cilantro', 'robot', 'camjam'],
install_requires=[
'gpiozero==1.4.1',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)