-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
61 lines (57 loc) · 1.33 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
[metadata]
name = jupyter_spaces
version = 0.3.0
author = Davide Sarra
description = Create parallel namespaces in Jupyter Notebooks
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
jupyter
ipython
magic
extension
namespace
url = https://github.com/davidesarra/jupyter_spaces
license = MIT
license_files =
LICENSE.txt
classifiers =
Environment :: Console
Framework :: IPython
Framework :: Jupyter
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
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 :: 3.10
Programming Language :: Python :: 3.11
[options]
package_dir = =src
packages = find:
python_requires = >=3.6
install_requires =
ipython>=5.0.0
[options.extras_require]
lint =
black==22.10.0
isort==5.10.1
test =
pytest>=7.0.1
pytest-cov==4.0.0
tox==3.27.0
[options.packages.find]
where = src
[tool:pytest]
addopts =
-vvv
--cov=jupyter_spaces
--cov-report=xml
--cov-report=term-missing
--cov-branch
testpaths =
tests