-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
38 lines (34 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = litl_simulator
description = LiDAR-in-the-loop optimization Simulator.
long_description = file: README.md
license =
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
author = Felix Antoine Goudreault
author_email = felix.goudreault82@gmail.com
url = https://light.princeton.edu/publication/lidar-in-the-loop-hyperparameter-optimization/
[options]
install_requires = opencv-python
matplotlib
numba
numpy
PyQt5
pyqtgraph
pyquaternion
pyopengl # for some reason not installed automatically
qimage2ndarray
qtrangeslider
scikit-learn
scipy
tqdm
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#using-find-namespace-or-find-namespace-packages
packages = find_namespace:
[options.entry_points]
console_scripts =
lidarsimgui = litl_simulator.gui:main
[flake8]
max-line-length = 120
docstring-convention = google