14 lines
312 B
Python
14 lines
312 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='param_service',
|
||
|
version='0.2',
|
||
|
description='Write/Read param from server',
|
||
|
author='CuiJingwei',
|
||
|
author_email='cuijingwei@brisonus.com',
|
||
|
packages=['param_service'],
|
||
|
install_requires=[
|
||
|
'numpy',
|
||
|
'PySide6',
|
||
|
],
|
||
|
)
|