2025-02-12 16:43:50 +01:00
|
|
|
[metadata]
|
|
|
|
name = identify
|
2025-02-13 05:46:49 +01:00
|
|
|
version = 2.6.7
|
2025-02-12 16:43:50 +01:00
|
|
|
description = File identification library for Python
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
2025-02-12 21:28:59 +01:00
|
|
|
url = https://github.com/pre-commit/identify
|
2025-02-12 16:43:50 +01:00
|
|
|
author = Chris Kuehl
|
|
|
|
author_email = ckuehl@ocf.berkeley.edu
|
|
|
|
license = MIT
|
2025-02-13 05:33:03 +01:00
|
|
|
license_files = LICENSE
|
2025-02-12 16:43:50 +01:00
|
|
|
classifiers =
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Programming Language :: Python :: 3
|
2025-02-12 21:44:30 +01:00
|
|
|
Programming Language :: Python :: 3 :: Only
|
2025-02-12 16:43:50 +01:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
|
|
|
|
[options]
|
|
|
|
packages = find:
|
2025-02-13 05:40:16 +01:00
|
|
|
python_requires = >=3.9
|
2025-02-12 16:43:50 +01:00
|
|
|
|
2025-02-12 21:46:10 +01:00
|
|
|
[options.packages.find]
|
|
|
|
exclude =
|
|
|
|
tests*
|
|
|
|
testing*
|
|
|
|
|
2025-02-12 16:43:50 +01:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
identify-cli=identify.cli:main
|
|
|
|
|
|
|
|
[options.extras_require]
|
2025-02-12 21:44:30 +01:00
|
|
|
license =
|
2025-02-12 21:54:34 +01:00
|
|
|
ukkonen
|
2025-02-12 16:43:50 +01:00
|
|
|
|
2025-02-12 22:00:21 +01:00
|
|
|
[options.package_data]
|
|
|
|
identify =
|
|
|
|
py.typed
|
|
|
|
|
2025-02-12 21:28:59 +01:00
|
|
|
[bdist_wheel]
|
2025-02-12 16:43:50 +01:00
|
|
|
universal = True
|
2025-02-12 21:28:59 +01:00
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
plugins = covdefaults
|
2025-02-12 21:44:30 +01:00
|
|
|
|
|
|
|
[mypy]
|
|
|
|
check_untyped_defs = true
|
|
|
|
disallow_any_generics = true
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
disallow_untyped_defs = true
|
2025-02-12 21:48:52 +01:00
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_unused_ignores = true
|
2025-02-12 21:44:30 +01:00
|
|
|
|
|
|
|
[mypy-testing.*]
|
|
|
|
disallow_untyped_defs = false
|
|
|
|
|
|
|
|
[mypy-tests.*]
|
|
|
|
disallow_untyped_defs = false
|