bec/bec_lib/setup.py
Ivan Usov 1c44912a90 build: pin typeguard/4.0.1
All typeguard/3.x versions, and 4.0.0 have an issue with class property decorator
2023-12-11 17:32:48 +01:00

27 lines
660 B
Python

from setuptools import setup
__version__ = "0.50.1"
if __name__ == "__main__":
setup(
install_requires=[
"numpy",
"msgpack",
"requests",
"typeguard>=4.0.1",
"pyyaml",
"redis",
"cytoolz",
"rich",
"pylint",
"loguru",
"psutil",
"fpdf",
],
extras_require={
"dev": ["pytest", "pytest-random-order", "coverage", "pandas", "black", "pylint"]
},
package_data={"bec_lib.tests": ["*.yaml"], "bec_lib.configs": ["*.yaml", "*.json"]},
version=__version__,
)