This repository was archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (54 loc) · 1.36 KB
/
setup.py
File metadata and controls
67 lines (54 loc) · 1.36 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
AUTHOR = "Dr. Kyle Doyle PhD"
NAME = "CislunarExplorers"
DESCRIPTION = "Flight software for Cislunar-Explorers"
REQUIRES_PYTHON = ">=3.6"
VERSION = "0.1"
INCLUDES = ["*"]
INSTALL_REQUIRES = [
"Adafruit-Blinka",
"adafruit-circuitpython-busdevice",
"adafruit-circuitpython-ds3231",
"adafruit-circuitpython-fxas21002c",
"adafruit-circuitpython-fxos8700",
"ADS1115",
"astropy",
"bitstring",
"numba",
"numpy-quaternion",
"numpy",
"opencv-python-headless",
"opencv-python",
"pigpio",
"psutil",
"python-dotenv",
"pyquaternion",
"scipy",
"sqlalchemy",
"tqdm",
"uptime",
"parameterized",
]
PI_INSTALL_REQUIRES = [
"adafruit-circuitpython-bno055",
"board",
"busio",
"picamera",
"vcgencmd",
]
DEV_REQUIRES = ["black", "flake8", "pip", "pre-commit"]
DOCS_REQUIRES = ["sphinx", "sphinx-rtd-theme", "watchdog"]
TEST_REQUIRES = ["matplotlib", "pandas", "pytest", "pytest-mock"]
EXTRAS = {"rpi": PI_INSTALL_REQUIRES, "dev": DEV_REQUIRES + TEST_REQUIRES}
setup(
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
desciption=DESCRIPTION,
extras_require=EXTRAS,
install_requires=INSTALL_REQUIRES,
name=NAME,
packages=find_packages(include=INCLUDES),
version=VERSION,
)