-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (42 loc) · 1.12 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
[metadata]
name = data-diode
version = attr: diode.__version__
author = Fionn Fitzmaurice
description = Send and receive data over serial diode
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/fionn/diode
keywords =
diode
data diode
classifiers =
Programming Language :: Python :: 3
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Security
Typing :: Typed
project_urls =
Source Code = https://github.com/fionn/diode
Changelog = https://github.com/fionn/diode/tags
Documentation = https://github.com/fionn/diode/blob/master/README.md
Bug Tracker = https://github.com/fionn/diode/issues
PyPI = https://pypi.org/project/data-diode/
Download = https://github.com/fionn/diode/archive/refs/heads/master.zip
[options]
zip_safe = false
pymodules = diode
include_package_data = true
packages = find:
python_requires = >=3.9
install_requires =
pyserial
[options.entry_points]
console_scripts =
diode = diode:main
[options.package_data]
* = py.typed
[options.extras_require]
dev =
pylint
mypy
coverage