-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
35 lines (32 loc) · 873 Bytes
/
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
[metadata]
name = arduino-simple-rpc
version = 2.4.2
description = Arduino simpleRPC API client library and CLI.
long_description = file: README.rst
author = Jeroen F.J. Laros
author_email = [email protected]
url = https://arduino-simple-rpc.readthedocs.io
keywords =
license = MIT
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
[options]
packages = find:
install_requires =
PyYAML>=5.3.1
pyserial>=3.4
[options.entry_points]
console_scripts =
simple_rpc = simple_rpc.cli:main
[flake8]
per-file-ignores =
docs/conf.py: E402
examples/wifi/wifi.py: F401
examples/wsgi/wsgi.py: F401
simple_rpc/__init__.py: F401
simple_rpc/simple_rpc.py: E252