bec/bec_lib/setup.py
semantic-release 4edc4869d9 0.33.0
Automatically generated by python-semantic-release
2023-09-07 09:38:31 +00:00

26 lines
564 B
Python

from setuptools import setup
__version__ = "0.33.0"
if __name__ == "__main__":
setup(
install_requires=[
"numpy",
"msgpack",
"requests",
"typeguard<3.0",
"pyyaml",
"redis",
"cytoolz",
"rich",
"pylint",
"loguru",
"psutil",
"fpdf",
],
extras_require={
"dev": ["pytest", "pytest-random-order", "coverage", "pandas", "black", "pylint"]
},
version=__version__,
)