-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
89 lines (80 loc) · 2.31 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
88
89
[metadata]
name = flake8_nb
version = attr: flake8_nb.__version__
description = Flake8 based checking for jupyter notebooks
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/s-weigand/flake8-nb
author = Sebastian Weigand
author_email = s.weigand.phy@gmail.com
license = Apache-2.0
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Framework :: Flake8
Framework :: Jupyter
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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 :: CPython
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
keywords = flake8_nb flake8 lint notebook jupyter ipython
project_urls =
Documentation=https://flake8-nb.readthedocs.io/en/latest/
Source=https://github.com/s-weigand/flake8-nb
Tracker=https://github.com/s-weigand/flake8-nb/issues
Changelog=https://flake8-nb.readthedocs.io/en/latest/changelog.html
[options]
packages = find:
install_requires =
flake8>=3.8.0,<5.0.5
ipython>=7.8.0
nbconvert>=5.6.0
python_requires = >=3.7
include_package_data = True
setup_requires =
setuptools>=41.2
tests_require = pytest>=3
zip_safe = False
[options.packages.find]
include =
flake8_nb
flake8_nb.*
[options.entry_points]
console_scripts =
flake8_nb = flake8_nb.__main__:main
flake8-nb = flake8_nb.__main__:main
flake8.report =
default_notebook = flake8_nb:IpynbFormatter
[flake8]
max-line-length = 99
exclude =
docs
*.ipynb_checkpoints/*
*.tox*
tests/data/notebooks/*
[darglint]
docstring_style = numpy
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
[rstcheck]
ignore_directives = autosummary,code-block
[mypy]
strict = True
ignore_missing_imports = True
scripts_are_modules = True
show_error_codes = True
warn_unused_ignores = False