forked from cbogithub/Depix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
60 lines (53 loc) · 1.29 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
[metadata]
name = depix
version = attr: depixlib.__version__
description = Recovers passwords from pixelized screenshots
long_description = file: README.md
long_description_content_type = text/markdown
license = CC BY 4.0
author = Sipke Mellema
author_email = [email protected]
url = https://github.com/beurtschipper/Depix
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Security
Topic :: Utilities
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
install_requires =
Pillow
types-Pillow
packages_data =
depixlib = py.typed
python_requires = >= 3.7
[options.entry_points]
console_scripts =
depix = depixlib.depix:main
genpixed = depixlib.genpixed:main
[options.extras_require]
dev =
black
flake8
isort
mypy
setuptools>=46.4.0
types-setuptools
[isort]
profile = black
[flake8]
indent-size = 4
max-line-length = 120
extend-ignore = W605
[mypy]
python_version = 3.9
show_error_codes = True
pretty = True
strict = True