22 lines
465 B
Python
22 lines
465 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="nxbt",
|
|
include_package_data=True,
|
|
long_description_content_type="text/markdown",
|
|
install_requires=[
|
|
"dbus-python==1.2.16",
|
|
"Flask==1.1.2",
|
|
"Flask-SocketIO==5.0.1",
|
|
"eventlet==0.27.0",
|
|
"blessed==1.17.10",
|
|
"pynput==1.7.1",
|
|
"psutil==5.6.6",
|
|
"cryptography==3.0",
|
|
],
|
|
extra_require={
|
|
"dev": [
|
|
"pytest"
|
|
]
|
|
}
|
|
)
|