-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (56 loc) · 1.27 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
[metadata]
name = pyquotes
version = attr: pyquotes.__version__
description = pyquotes normalizes quotes in your Python codebase
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
url = https://github.com/ThiefMaster/pyquotes
license = MIT
author = Adrian Moennich
author_email = [email protected]
classifiers =
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
zip_safe = false
include_package_data = true
python_requires = ~=3.6
install_requires =
click
parso
dataclasses;python_version<'3.7'
[options.extras_require]
toml =
toml
dev =
black
flake8
flake8-quotes
isort
pytest
pytest-cov
toml
twine
wheel
[options.entry_points]
console_scripts =
pyquotes = pyquotes.cli:main
[flake8]
extend-exclude = tests/data/
ignore = E203, E501, W503, W504
max-line-length=88
inline-quotes = single
multiline-quotes = single
docstring-quotes = double
avoid-escape = true
[pyquotes]
extend-exclude =
tests/data
htmlcov
.vscode