-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·35 lines (34 loc) · 1.26 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'hokuyolx',
packages = ['hokuyolx'],
version = '0.9.0',
description = 'Module for working with Hokuyo LX laser scanners.',
author='Artyom Pavlov',
author_email='[email protected]',
url='https://github.com/SkRobo/hokuyolx',
license='MIT',
install_requires=['numpy'],
zip_safe=True,
long_description='This module aims to implement communication protocol '
'with Hokuyo laser rangefinder scaners, specifically with the'
'following models: UST-10LX, UST-20LX, UST-30LX. It was tested only '
'with UST-10LX but should work with others as well. It\'s '
'Python 2 and 3 compatible but was mainly tested using Python 3.',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware',
],
)