-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
44 lines (42 loc) · 1.41 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
[metadata]
name = jupyterlab_dosbox
version = 0.2.0
description = Run DosBox in jupyterlab
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/matthewturk/jupyterlab_dosbox/
author = Matthew Turk
author_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
classifiers =
"Framework :: Jupyter",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
License :: OSI Approved :: BSD License
keywords = jupyter jupyterlab jupyterlab3
[options]
packages = find:
install_requires =
jupyter_server>=1.6,<2
jupyterlab~=3.1
ipywidgets>=7.6.1
traitlets>=5.0.5
pooch>=1.6.0
python_requires = >3.7,<3.12
[flake8]
max-line-length = 88
exclude = doc,
examples
ignore = E203, # Whitespace before ':' (black compatibility)
E266, # Too many leading '#' for block comment
E302, # Expected 2 blank lines, found 0
E501, # Line too long (let Black deal with line-lenght)
E741, # Do not use variables named 'I', 'O', or 'l'
W503, # Line break occurred before a binary operator (black compatibility)
enable-extensions = G # flake8-logging-format (extension is disabled by default)