-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
63 lines (57 loc) · 1.58 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
[metadata]
name = tpmstream
author = joholl
version = attr: tpmstream.__version__
description = "A tool to help you understand TPM commands and responses."
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/joholl/tpmstream
license = BSD
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Topic :: Security :: Cryptography
# Typing :: Typed
[options]
packages = find:
package_dir =
= src
zip_safe = false
python_requires = >= 3.9, < 4.0
setup_requires = setuptools
install_requires =
colorama
dpkt
[options.package_data]
* = *.pcap
# Create these files and add to package when the proper annotations have been added.
# tpmstream.common = py.typed
# tpmstream.io.binary = py.typed
# tpmstream.io.events = py.typed
# tpmstream.io.pcapng = py.typed
# tpmstream.io.pretty = py.typed
# tpmstream = py.typed
# tpmstream.spec.commands = py.typed
# tpmstream.spec.common = py.typed
# tpmstream.spec.structures = py.typed
# tpmstream.io.auto = py.typed
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
tpmstream = tpmstream.__main__:main
[options.extras_require]
dev =
black
# [mypy]
# namespace_packages = True
# disallow_any_generics = True
# disallow_untyped_calls = True
# disallow_untyped_defs = True
# disallow_incomplete_defs = True