forked from jawah/charset_normalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (61 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
[metadata]
name = charset-normalizer
description = The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
long_description = file: README.md, CHANGELOG.md, LICENSE
long_description_content_type = text/markdown
keywords = encoding, charset, charset-detector, detector, normalization, unicode, chardet, detect
url = https://github.com/Ousret/charset_normalizer
license = MIT
author_email = ahmed.tahri@cloudnursery.dev
author = Ahmed TAHRI
python_requires = >=3.6.0
project_urls =
Bug Reports = https://github.com/Ousret/charset_normalizer/issues
Documentation = https://charset-normalizer.readthedocs.io/en/latest
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: Implementation :: PyPy
Topic :: Text Processing :: Linguistic
Topic :: Utilities
Typing :: Typed
[options.packages.find]
exclude =
tests
*.tests
*.tests.*
tests.*
docs*
data*
[options.extras_require]
unicode_backport =
[options.entry_points]
console_scripts =
normalizer = charset_normalizer.cli.normalizer:cli_detect
[options]
packages = find:
include_package_data = True
[options.package_data]
charset_normalizer = py.typed
[tool:pytest]
addopts = --cov=charset_normalizer --cov-report=term-missing -rxXs
[flake8]
ignore = W503, E203, B305
max-line-length = 120
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
[tool:isort]
profile = black
combine_as_imports = True