-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.cfg
87 lines (74 loc) · 1.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = nbqa
version = attr: nbqa.__version__
description = Run any standard Python code quality tool on a Jupyter Notebook
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/nbQA-dev/nbQA
author = Marco Gorelli, Girish Pasupathy, Sebastian Weigand
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Framework :: Jupyter
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Quality Assurance
keywords = jupyter, notebook, format, lint
project_urls =
Documentation = https://nbQA.readthedocs.io/en/latest/
Source = https://github.com/nbQA-dev/nbQA
Tracker = https://github.com/nbQA-dev/nbQA/issues
[options]
packages = find:
py_modules = nbqa
install_requires =
autopep8>=1.5
ipython>=7.8.0
tokenize-rt>=3.2.0
tomli
python_requires = >=3.9
[options.packages.find]
exclude =
tests*
[options.entry_points]
console_scripts =
nbqa = nbqa.__main__:main
[options.extras_require]
toolchain =
black
blacken-docs
flake8
isort
jupytext
mypy
pylint
pyupgrade
ruff
[flake8]
extend-ignore = E203,E503
max-line-length = 120
exclude = venv,.*
[darglint]
ignore = DAR101,DAR103,DAR201,DAR301
docstring_style = numpy
[pydocstyle]
add-ignore = D104
[mypy]
strict = True
allow_untyped_decorators = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-_pytest.capture]
ignore_missing_imports = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-setup]
ignore_errors = True
[mypy-conf]
ignore_errors = True