forked from mihsamusev/pylidartracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.3 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
from setuptools import setup, find_packages
setup(
name ='pylidartracker',
version ='1.0.3',
author ='Mihhail Samusev',
author_email ='msam@build.aau.dk',
url ='https://github.com/mihsamusev/pylidartracker',
description ='UI for processing of data collected with Velodyne lidar',
long_description = "Check the GitHub homepage for getting started", # TODO: add DESCRIPTION.txt that is excluded
license ='MIT',
package_dir={"": "src"},
py_modules=["app","controller","imageresource"],
packages=["ui","processing"],
#include_package_data=True,
#package_data={'src/images': ['images/*.png']},
install_requires = [
"dpkt",
"numpy",
"scikit-image",
"scikit-learn",
"scipy",
"PyQt5",
"pyopengl",
"pyqtgraph==0.11.0",
],
entry_points ={
'console_scripts': [
'pylidartracker = app:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent"
],
keywords="lidar tracking clustering traffic analysis processing velodyne"
)