mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 18:20:01 +02:00
27 lines
657 B
Python
27 lines
657 B
Python
from setuptools import setup
|
|
|
|
__version__ = "0.44.1"
|
|
|
|
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"]
|
|
},
|
|
package_data={"bec_lib.tests": ["*.yaml"], "bec_lib.configs": ["*.yaml", "*.json"]},
|
|
version=__version__,
|
|
)
|