forked from Brikwerk/nxbt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 1.01 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
from setuptools import setup
setup(
name="nxbt",
include_package_data=True,
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=[
# dbus-python 1.3.2+ supports Python 3.13; wheels available for ARM
"dbus-python>=1.3.2,<2",
# Flask 3.1+ has Python 3.13 support; Werkzeug 3.x required by Flask 3.x
"Flask>=3.1.0,<4",
"Werkzeug>=3.1.0,<4",
"Flask-SocketIO>=5.4.1,<6",
"Flask-Limiter>=3.5.0",
# eventlet 0.37+ improved Python 3.12/3.13 greenlet compatibility
"eventlet>=0.37.0,<0.39",
"blessed>=1.20.0",
"pynput>=1.7.6",
# psutil 6.x cleans up deprecated APIs; pure-Python fallback on ARM
"psutil>=6.0.0,<7",
# cryptography 3.3.2 has known CVEs — upgrade to 41+ for security patches
"cryptography>=41.0.7",
"jinja2>=3.1.4,<4",
"itsdangerous>=2.2.0,<3",
],
extras_require={
"dev": [
"pytest>=8.0",
]
}
)