forked from m3d/osgar_archive_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.35 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="osgar",
version="0.2.0",
install_requires=[
'msgpack>=1.0.0',
],
extras_require={
'tools': ['opencv-python>=3', 'Pygame'],
},
author="Robotika.cz",
author_email="[email protected]",
description="Open Source Garden/Generic Autonomous Robot / Python library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/robotika/osgar",
python_requires=">=3.6",
packages=['osgar', 'osgar.drivers', 'osgar.lib', 'osgar.tools', 'subt'],
package_data={
'': ['config/*.json'],
},
entry_points={
'console_scripts': [
'lidarview = osgar.tools.lidarview:main [tools]',
'log2video = osgar.tools.log2video:main [tools]',
'log2pcap = osgar.tools.log2pcap:main [tools]',
'logger = osgar.logger:main',
'record = osgar.record:main',
'replay = osgar.replay:main',
'subt = subt.main:main',
'allsync = subt.tools.allsync:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
# vim: expandtab sw=4 ts=4