2024-08-10 19:13:13 -07:00
|
|
|
[metadata]
|
|
|
|
name = comic_hasher
|
|
|
|
description = python tools to support comic-hasher
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
url = https://gitea.narnian.us/lordwelch/comic-hasher
|
|
|
|
author = Timmy Welch
|
|
|
|
author_email = timmy@narnian.us
|
|
|
|
license = MIT
|
|
|
|
license_files = LICENSE
|
|
|
|
classifiers =
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
|
|
|
|
[options]
|
2024-08-11 20:46:41 -07:00
|
|
|
py_modules = quick_tag
|
2024-08-10 19:13:13 -07:00
|
|
|
install_requires =
|
2024-08-11 20:46:41 -07:00
|
|
|
comictagger==1.6.0a20
|
|
|
|
imagehash
|
2024-08-10 19:13:13 -07:00
|
|
|
python_requires = >=3.9
|
2024-08-11 20:46:41 -07:00
|
|
|
package_dir =
|
|
|
|
=cmd
|
2024-08-10 19:13:13 -07:00
|
|
|
|
2024-08-11 20:46:41 -07:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts = quick-tag=quick_tag:main
|
2024-08-10 19:13:13 -07:00
|
|
|
|
|
|
|
[pep8]
|
|
|
|
ignore = E265,E501
|
|
|
|
max_line_length = 120
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
extend-ignore = E501, A003
|
|
|
|
max_line_length = 120
|
|
|
|
per-file-ignores =
|
|
|
|
*_test.py: LN001
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
plugins = covdefaults
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
fail_under = 95
|
|
|
|
|
|
|
|
[mypy]
|
|
|
|
check_untyped_defs = true
|
|
|
|
disallow_any_generics = true
|
|
|
|
warn_return_any = true
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
|
|
|
[mypy-testing.*]
|
|
|
|
warn_return_any = false
|
|
|
|
disallow_untyped_defs = false
|
|
|
|
|
|
|
|
[mypy-tests.*]
|
|
|
|
warn_return_any = false
|
|
|
|
disallow_untyped_defs = false
|