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