forked from saasmath/PyBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.16 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.16 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
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import glob
setup(name='pybot',
version='1.0',
description='A collection of packages and modules for robotics and RasPi',
long_description="""
This collection of packages and modules are primarly intended for developping
robotics systems with Python on a Raspberry PI.
It contains interfacing modules with various kind of hardwares.
Even if developped with the RasPi in mind, some of the modules can be used in
other environments.
In any case, most of the 'leaf' features are independant, and you can tailor the
library by removing stuff you don't need, which are most of the time organized as
sub-packages.
""",
author='Eric Pascual',
author_email='eric@pobot.org',
url='http://www.pobot.org',
download_url='https://github.com/Pobot/PyBot',
packages=[
'pybot',
'pybot.abelectronics',
'pybot.irobot',
'pybot.dbus',
'pybot.dmxl',
'pybot.dspin'
],
scripts= \
glob.glob('./bin/*.py') + \
glob.glob('./demo/*.py')
)