-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
88 lines (78 loc) · 2.48 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# -*- coding: utf-8 -*-
from __future__ import annotations
from setuptools import find_packages
from setuptools import setup
exec(compile(open("pioreactor/version.py").read(), "pioreactor/version.py", "exec"))
CORE_REQUIREMENTS = [
"click==8.1.7",
"paho-mqtt==2.1.0",
"JSON-log-formatter==0.5.1",
"colorlog==6.7.0",
"msgspec==0.18.5",
"diskcache==5.6.3",
"crudini==0.9.5",
"iniparse==0.5",
"six==1.16.0",
"blinker==1.8.2",
"flask==3.0.2",
"flup6==1.1.1",
"huey==2.5.0",
"ifaddr==0.2.0",
"itsdangerous==2.2.0",
"Jinja2==3.1.4",
"MarkupSafe==2.1.5",
"python-dotenv==1.0.1",
"Werkzeug==3.0.3",
"packaging==24.1",
]
LEADER_REQUIREMENTS: list[str] = []
WORKER_REQUIREMENTS = [
"Adafruit-Blinka==8.43.0",
"adafruit-circuitpython-ads1x15==2.2.23",
"adafruit-circuitpython-busdevice==5.2.9",
"adafruit-circuitpython-connectionmanager==3.1.1",
"adafruit-circuitpython-requests==4.1.3",
"adafruit-circuitpython-typing==1.10.3",
"Adafruit-PlatformDetect==3.71.0",
"Adafruit-PureIO==1.1.11",
"DAC43608==0.2.7",
"plotext==5.2.8",
"pyftdi==0.55.4",
"pyserial==3.5",
"pyusb==1.2.1",
"rpi_hardware_pwm==0.2.1",
"typing_extensions==4.12.2",
]
setup(
name="pioreactor",
version=__version__, # type: ignore # noqa: F821
license="MIT",
description="The core Python app of the Pioreactor. Control your bioreactor through Python.",
url="https://github.com/pioreactor/pioreactor",
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Development Status :: 5 - Production/Stable",
],
keywords=["microbiology", "bioreactor", "turbidostat", "raspberry pi", "education", "research"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Pioreactor",
author_email="[email protected]",
install_requires=CORE_REQUIREMENTS,
include_package_data=True,
packages=find_packages(exclude=["*.tests", "*.tests.*"]),
entry_points="""
[console_scripts]
pio=pioreactor.cli.pio:pio
pios=pioreactor.cli.pios:pios
""",
python_requires=">=3.11",
extras_require={
"worker": WORKER_REQUIREMENTS,
"leader_worker": LEADER_REQUIREMENTS + WORKER_REQUIREMENTS,
"leader": LEADER_REQUIREMENTS + WORKER_REQUIREMENTS,
},
)