-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
69 lines (60 loc) · 1.51 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[bumpversion]
current_version = 0.8.0
commit = True
tag = True
[metadata]
name = modbus-proxy
version = attr: modbus_proxy.__version__
author = Tiago Coutinho
author_email = [email protected]
license = GNU General Public License v3
license_file = LICENSE
description = ModBus TCP proxy
long_description = file: README.md, HISTORY.md
long_description_content_type = text/markdown
keywords = modbus, tcp, proxy
url = https://github.com/tiagocoutinho/modbus-proxy
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Manufacturing
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
py_modules = modbus_proxy
package_dir =
=src
zip_safe = true
python_requires = >=3.9
tests_require = pytest >=3
[options.entry_points]
console_scripts =
modbus-proxy = modbus_proxy:main
[options.extras_require]
yaml = PyYAML
toml = toml
test =
pytest>=6
pytest-cov>=2
pytest-asyncio>=0.15
flake8>=3.9
tox>=3.24
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[bumpversion:file:src/modbus_proxy.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[flake8]
max-line-length = 88
extend-ignore = E203
[tox:tox]
envlist = py3