-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 794 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 794 Bytes
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
import setuptools
setuptools.setup(
name="auv",
version="23.0.0",
author="Team Inspiration",
description="AUV Software",
platforms="any",
packages=["auv"],
install_requires=[
"numpy",
"pyserial",
"bluerobotics-ping",
"python-dotenv",
"pyyaml",
"simple-pid",
"circle-fit",
"smbus",
"crcmod",
"shapely",
],
# >= 2.7 (legacy, will drop support) or >= 3.6
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,!=3.5",
extras_require={
"dev": [
"black",
"pytest",
"pytest-cov",
"pytest-mock",
"matplotlib",
"networkx",
],
"cv": [
"opencv-python",
],
},
)