param_service/setup.py

14 lines
314 B
Python
Raw Normal View History

2025-04-01 10:56:23 +08:00
from setuptools import setup
setup(
name='param_service',
version='0.2.1',
2025-04-01 10:56:23 +08:00
description='Write/Read param from server',
author='CuiJingwei',
author_email='cuijingwei@brisonus.com',
packages=['param_service'],
install_requires=[
'numpy',
'PySide6',
],
)