forked from SkoltechRobotics/rplidar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 1.13 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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'rplidar',
py_modules = ['rplidar'],
version = '0.9.2',
description = 'Simple and lightweight module for working with RPLidar laser scanners',
author='Artyom Pavlov',
author_email='[email protected]',
url='https://github.com/SkRobo/rplidar',
license='MIT',
install_requires=['pyserial'],
zip_safe=True,
long_description='This module aims to implement communication protocol '
'with RPLidar laser scanners. 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',
],
)