forked from simonmonk/raspirobotboard3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.27 KB
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
34
35
36
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
setup(
name='rrb3',
version='1.1',
description='A library to support the RaspberryRobotBoard Version 3',
long_description=readme,
author='Simon Monk',
author_email='evilgeniusauthor@gmail.com',
url='https://github.com/simonmonk/raspirobotboard3',
download_url='https://github.com/simonmonk/raspirobotboard3/tarball/0.1',
py_modules=['rrb3'],
install_requires=[
'RPi.GPIO>=0.5',
],
license='MIT',
zip_safe=False,
keywords='raspirobotboard3 rrb3 raspi robot raspberry pi dc motor stepper',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: PyPy',
],
)