-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
54 lines (45 loc) · 1.23 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
[metadata]
name = texthooks
version = 0.6.8
description = pre-commit fixers and linters for handling text files
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/sirosen/texthooks
author = Stephen Rosen
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[options]
python_requires = >=3.8
include_package_data = true
package_dir=
=src
packages=find:
install_requires =
identify>=2.0,<3.0
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
alphabetize-codeowners = texthooks.alphabetize_codeowners:main
fix-smartquotes = texthooks.fix_smartquotes:main
fix-spaces = texthooks.fix_spaces:main
fix-ligatures = texthooks.fix_ligatures:main
forbid-bidi-controls = texthooks.forbid_bidi_controls:main
macro-expand = texthooks.macro_expand:main
[options.extras_require]
dev =
pytest<9
pytest-cov<7
pytest-xdist<4
[isort]
profile = black
[flake8]
exclude = .git,__pycache__,.eggs,venv,.venv
max-line-length = 88
ignore = W503,W504,E203,
[mypy]
ignore_missing_imports = true