nxbt/setup.py
dependabot[bot] e7c1c211cd
Bump cryptography from 3.0 to 3.3.2
Bumps [cryptography](https://github.com/pyca/cryptography) from 3.0 to 3.3.2.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/3.0...3.3.2)

---
updated-dependencies:
- dependency-name: cryptography
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-03 19:18:48 +00:00

22 lines
467 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.31.0",
"blessed==1.17.10",
"pynput==1.7.1",
"psutil==5.6.6",
"cryptography==3.3.2",
],
extra_require={
"dev": [
"pytest"
]
}
)