-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.cfg
More file actions
100 lines (90 loc) · 2.33 KB
/
setup.cfg
File metadata and controls
100 lines (90 loc) · 2.33 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[metadata]
name = pytypedstream
version = attr: typedstream.__version__
url = https://github.com/dgelessus/python-typedstream
author = dgelessus
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Disassemblers
Topic :: System
Topic :: Utilities
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: MacOS :: MacOS X
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
license = LGPL-3.0-or-later
license_files =
COPYING.txt
COPYING.LESSER.txt
description = A pure Python, cross-platform library/tool for reading Mac OS X and NeXTSTEP typedstream files
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
typedstream
streamtyped
nsarchiver
nsunarchiver
nxtypedstream
mac
macosx
osx
macos
nextstep
[options]
python_requires = >=3.6
install_requires =
contextvars; python_version < "3.7"
typing-extensions; python_version < "3.8"
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pytypedstream = typedstream.__main__:main
[flake8]
extend-exclude =
.mypy_cache/,
build/,
dist/,
# The following issues are ignored because they do not match our code style:
ignore =
# These E1 checks report many false positives for code that is (consistently) indented with tabs alone.
# indentation contains mixed spaces and tabs
E101,
# over-indented
E117,
# continuation line over-indented for hanging indent
E126,
# missing whitespace around arithmetic operator
E226,
# at least two spaces before inline comment
E261,
# line too long
E501,
# indentation contains tabs
W191,
# blank line contains whitespace
W293,
# line break before binary operator
W503,
[mypy]
files=src/**/*.py
python_version = 3.6
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_unreachable = True
warn_redundant_casts = True