forked from deathbeds/jupyterlab-starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
137 lines (108 loc) · 2.86 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[metadata]
name = jupyter_starters
description = Parametrized starter files and folders for Jupyter
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/deathbeds/jupyterlab-starters
author = dead pixels collective
author_email = deathbeds@groups.google.com
license = BSD-3-Clause
keywords =
Interactive
Interpreter
Shell
Web
Jupyter
JupyterLab
classifiers =
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Framework :: Jupyter :: JupyterLab :: 3
Framework :: Jupyter :: JupyterLab :: Extensions
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >=3.7
install_requires =
jupyterlab >=3
jupyter_client >=6.1.0
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
[options.packages.find]
where =
src
[options.entry_points]
console_scripts =
jupyter-starters = jupyter_starters.app:main
[isort]
profile = black
multi_line_output = 3
known_first_party = jupyter_starters
[flake8]
exclude = .git,__pycache__,envs,.ipynb_checkpoints,.mypy_cache
max-line-length = 88
[mypy]
# Empty section required as of mypy 0.800;
# see https://github.com/python/mypy/issues/9940
[mypy-cookiecutter]
ignore_missing_imports = True
[mypy-cookiecutter.*]
ignore_missing_imports = True
[mypy-fastjsonschema.*]
ignore_missing_imports = True
[mypy-jupyter_server]
ignore_missing_imports = True
[mypy-jupyter_server.*]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-jsonschema]
ignore_missing_imports = True
[mypy-jsonschema.*]
ignore_missing_imports = True
[mypy-jupyter_starters.json_]
ignore_missing_imports = True
ignore_errors = True
[mypy-jupyter_client.*]
ignore_missing_imports = True
[mypy-jupyter_core.*]
ignore_missing_imports = True
[mypy-jupyterlab.*]
ignore_missing_imports = True
[mypy-nbconvert.*]
ignore_missing_imports = True
[mypy-nbformat]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True
[mypy-ruamel.*]
ignore_missing_imports = True
[mypy-ruamel_yaml]
ignore_missing_imports = True
[mypy-traitlets.*]
ignore_missing_imports = True
[mypy-doit.*]
ignore_missing_imports = True
[mypy-doit]
ignore_missing_imports = True
[mypy-colorama]
ignore_missing_imports = True
[pycodestyle]
ignore = E203,W503
max-line-length = 88
[tool:pytest]
junit_family = xunit2
filterwarnings =
ignore::PendingDeprecationWarning:pytest_check_links.*