-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (44 loc) · 1.2 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# coding=utf-8
# !/usr/bin/env python
try:
from setuptools import setup
except ImportError:
print('No setuptools installed, use distutils')
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='hokuyo-python-lib',
packages=[
'hokuyo',
'hokuyo.driver',
'hokuyo.tools',
'hokuyo.tests'
],
package_dir={
'hokuyo': 'src/hokuyo',
'hokuyo.driver': 'src/hokuyo/driver',
'hokuyo.tools': 'src/hokuyo/tools',
'hokuyo.tests': 'src/hokuyo/tests'
},
install_requires=required,
version='1.3',
description='Hokuyo driver in python',
author=u'Paweł Suder',
author_email='[email protected]',
url='http://project-capo.github.io/',
download_url='http://github.com/old-paoolo/hokuyo-python-lib',
keywords=[
'hokuyo'
],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
],
long_description='''\
'''
)