File: setup.cfg

package info (click to toggle)
siobrultech-protocols 0.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: python: 3,042; sh: 15; makefile: 7
file content (34 lines) | stat: -rw-r--r-- 977 bytes parent folder | download
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
[metadata]
name = siobrultech-protocols
version = 0.14.0
author = Shawn Wilsher
author_email = me@shawnwilsher.com
description = A Sans-I/O Python client library for Brultech Devices
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE
classifiers = 
	Development Status :: 4 - Beta
	License :: OSI Approved :: MIT License
	Operating System :: OS Independent
	Programming Language :: Python :: 3.8
	Programming Language :: Python :: 3.9
	Programming Language :: Python :: 3.10
	Programming Language :: Python :: 3.11
project_urls = 
	Bug Reports = https://github.com/sdwilsh/siobrultech-protocols/issues
	Release Notes = https://github.com/sdwilsh/siobrultech-protocols/releases/
	Source = https://github.com/sdwilsh/siobrultech-protocols

[options]
python_requires = >3.8, <4
packages = find:

[options.package_data]
siobrultech_protocols = py.typed

[flake8]
max-line-length = 88
max-complexity = 10
select = E9,F63,F7,F82