mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 10:10:02 +02:00
29 lines
788 B
Python
29 lines
788 B
Python
from setuptools import setup
|
|
|
|
__version__ = "0.59.4"
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
install_requires=[
|
|
"numpy",
|
|
"msgpack",
|
|
"requests",
|
|
"typeguard>=4.0.1",
|
|
"pyyaml",
|
|
"redis",
|
|
"toolz",
|
|
"rich",
|
|
"pylint",
|
|
"loguru",
|
|
"psutil",
|
|
"fpdf",
|
|
"fastjsonschema",
|
|
],
|
|
extras_require={
|
|
"dev": ["pytest", "pytest-random-order", "coverage", "pandas", "black", "pylint"]
|
|
},
|
|
entry_points={"console_scripts": ["bec-channel-monitor = bec_lib:channel_monitor_launch"]},
|
|
package_data={"bec_lib.tests": ["*.yaml"], "bec_lib.configs": ["*.yaml", "*.json"]},
|
|
version=__version__,
|
|
)
|