Skip to content

Commit 9577e15

Browse files
committed
improve __init__.py
1 parent 364473f commit 9577e15

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pyModbusTCP/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,12 @@
1111
# 15
1212
# Charset: utf-8
1313

14+
from .constants import VERSION
15+
16+
1417
__all__ = ['constants', 'client', 'server', 'utils']
15-
from .constants import VERSION as __version__
18+
__title__ = 'pyModbusTCP'
19+
__description__ = 'A simple Modbus/TCP library for Python.'
20+
__url__ = 'https://github.com/sourceperl/pyModbusTCP'
21+
__version__ = VERSION
22+
__license__ = 'MIT'

0 commit comments

Comments
 (0)