-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.cfg
56 lines (50 loc) · 1.57 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
[metadata]
name = indxparse
version = attr: indxparse.__version__
author = Willi Ballenthin
url = https://github.com/williballenthin/INDXParse
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
license_files =
LICENSE
THIRD_PARTY_LICENSES.md
[options]
install_requires =
jinja2
packages = find:
python_requires = >=3.8
[options.entry_points]
console_scripts =
INDXParse.py = indxparse.INDXParse:main
MFTINDX.py = indxparse.MFTINDX:main
SDS_get_index.py = indxparse.SDS_get_index:main
extract_mft_record_slack.py = indxparse.extract_mft_record_slack:main
get_file_info.py = indxparse.get_file_info:main
list_mft.py = indxparse.list_mft:main
tree_mft.py = indxparse.tree_mft:main
# NOTE: fuse-mft.py will still be exposed as a script if the fuse
# feature is not installed, but it will not run successfully unless
# the dependencies of that feature are installed. This is a known
# non-obvious dependency specification issue:
# https://github.com/pypa/pip/issues/9726
fuse-mft.py = indxparse.fuse_mft:main [fuse]
# NOTE: As with fuse-mft.py, MFTView.py requires the wx feature.
MFTView.py = indxparse.MFTView:main [wx]
[options.extras_require]
fuse =
fuse-python
testing =
mypy
wx =
wxPython
[options.package_data]
indxparse = py.typed
[flake8]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
extend-ignore =
E203
E501
[isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = black