forked from SkoltechRobotics/rplidar
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 1.17 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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'rplidar-roboticia',
py_modules = ['rplidar'],
version = '0.9.5',
description = 'Simple and lightweight module for working with RPLidar laser scanners',
author='Artyom Pavlov, Julien Jehl',
author_email='julien.@roboticia.com',
url='https://github.com/Roboticia/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 :: 5 - Production/Stable',
'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',
],
)