-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
50 lines (45 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
49
50
[metadata]
name = uavfpy
version = attr: uavfpy.__version__
author = Mike Sutherland, An Dang, & the UAV Forge Team
author_email = [email protected]
url = https://uci-uav-forge.github.io/uavf/
description = "UCI UAV Forge's Software for the AUVSI Student Unmanned Aerial Systems competition"
long_description = file: README.md
long_description_content_type = text/markdown
keywords = object detection, uav, path planning
license = MIT
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
[options]
package_dir=
=src
zip_safe = True
include_package_data = True
install_requires =
rrtplanner
tensorflow >= 2.8.0
opencv-python >= 4.5
networkx >= 2.6.3
scipy >= 1.7
matplotlib >= 3.3
pytest >= 7.0
scikit-learn >= 1.0
tflite-runtime >= 2.5.0
jupytext >= 1.13
shapely >= 1.8
pyproj >= 3.3
cvxpy >= 1.1
[options.packages.find]
where=src
[options.extras_require]
notebook =
jupyter >= 1.0.0
dev =
black >= 22.3
Sphinx >= 4.5
sphinx-autoapi >= 1.8
sphinx-rtd-theme >= 1.0