bec/bec_lib/setup.py
semantic-release f58fed2c7d 2.0.3
Automatically generated by python-semantic-release
2024-04-11 12:57:33 +00:00

51 lines
1.3 KiB
Python

from setuptools import setup
__version__ = "2.0.3"
if __name__ == "__main__":
setup(
install_requires=[
"hiredis",
"louie",
"numpy",
"scipy",
"msgpack",
"requests",
"typeguard>=4.0.1",
"pyyaml",
"redis",
"toolz",
"rich",
"pylint",
"loguru",
"psutil",
"fpdf",
"fastjsonschema",
"lmfit",
"pydantic~=2.0",
],
extras_require={
"dev": [
"pytest",
"pytest-random-order",
"pytest-redis",
"pytest-timeout",
"coverage",
"pandas",
"black~=24.0",
"isort",
"pylint",
"fakeredis",
]
},
entry_points={
"console_scripts": ["bec-channel-monitor = bec_lib:channel_monitor_launch"],
"pytest11": [
"bec_lib_end2end_fixtures = bec_lib.tests.end2end_fixtures",
"bec_lib_fixtures = bec_lib.tests.fixtures",
],
},
package_data={"bec_lib.tests": ["*.yaml"], "bec_lib.configs": ["*.yaml", "*.json"]},
version=__version__,
)