-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
57 lines (51 loc) · 1.46 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
# -*- coding: utf-8 -*-
[metadata]
name = PySLMPClient
version = attr: pyslmpclient.VERSION
description = 三菱電機のSLMP (Seamless Message Protocol)のクライアント
author = Masahiro HASEGAWA
author-email = [email protected]
url = https://github.com/masahase0117/PySLMPClient
license = BSD License
license-file = LICENSE
platform = any
keywords = PLC, SLMP, MC Protocol, CC-Link IE, CC-Link, Ethernet, TCP, UDP
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Natural Language :: Japanese
Operating System :: OS Independent
Topic :: System :: Networking :: Monitoring
Intended Audience :: Manufacturing
long_description = file: readme.rst
[options]
zip_safe = true
include_package_data = true
python_requires = >= 3.5
packages = pyslmpclient
test_suite = tests
setup_requires =
setuptools >=38.3.0 # version with most `setup.cfg` bugfixes
install_requires = NumPy
tests_require =
entry_points = file: entry_points.cfg
[bdist_wheel]
[check]
metadata = true
restructuredtext = true
strict = true
[sdist]
formats = zip, gztar
[flake8]
max-line-length = 79
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
ignore = H301, H405
[tool.black]
line-length = 79
target-version = py35