-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (42 loc) · 926 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
36
37
38
39
40
41
42
43
44
45
46
47
[metadata]
name = dale
version = 0.0.1
author = Ledger
author_email = [email protected]
description = Dummy APDU Logger, Explained
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/LedgerHQ/dale
project_urls =
Bug Tracker = https://github.com/LedgerHQ/dale/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
package_dir=
=src
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires=
protobuf>=3.19
[options.packages.find]
where=src
exclude =
tests
[options.entry_points]
console_scripts =
dale = dale.logger:main
[options.extras_require]
tests=
pytest
checkers=
yapf
toml
flake8
mypy
[flake8]
max-line-length = 120
extend-exclude = src/dale/exchange/pb,build
# ignore variable alignment
ignore = E221,E241