12 lines
200 B
Python
12 lines
200 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='pe1-modbus',
|
|
version='0.0.0',
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
"pymodbusTCP",
|
|
"paho-mqtt"
|
|
]
|
|
) |