-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (87 loc) · 2.06 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=62",
"trove-classifiers",
"wheel",
]
[project]
name = "jupyter-tempvars"
description = "Jupyter Notebook extension providing per-cell temporary variables"
keywords = [
"extension",
"jupyter",
"notebook",
"temporary variables",
]
requires-python = ">=3.7"
dependencies = [
"tempvars",
]
dynamic = [
"version",
"readme",
]
classifiers = [
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
]
[project.license]
text = "MIT License"
[[project.authors]]
name = "Brian Skinn"
email = "[email protected]"
[project.urls]
Changelog = "https://github.com/bskinn/jupyter-tempvars/blob/main/CHANGELOG.md"
Docs = "https://jupyter-tempvars.readthedocs.io/en/stable/"
Donate = "https://github.com/sponsors/bskinn"
Homepage = "https://github.com/bskinn/jupyter-tempvars"
Thank = "https://twitter.com/btskinn"
[project.scripts]
jupyter-tempvars = 'jupyter_tempvars.cli:main'
[tool.setuptools]
include-package-data = true
platforms = [ "any", ]
license-files = [ "LICENSE.txt", ]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
"*" = [ 'extension/jupyter_tempvars.*', ]
[tool.setuptools.packages.find]
where = [ "src", ]
namespaces = false
[tool.black]
line-length = 88
include = '''
(
^/tests/.*[.]py$
| ^/src/jupyter_tempvars/.*[.]py$
| ^/setup[.]py
| ^/conftest[.]py
)
'''
exclude = '''
(
__pycache__
| ^/[.]
| ^/doc
| ^/env
)
'''
[tool.interrogate]
fail-under = 100
verbose = 1