-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
93 lines (85 loc) · 2.09 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pretty-jupyter"
authors = [{name = "Jan Palasek"}]
description = "Exports Jupyter notebook into beautiful and dynamic HTML report."
license = {file = "LICENSE.md"}
version = "2.0.8"
readme = "README.md"
dependencies = [
"click",
"ipython>=7.1",
"nbconvert>=6.0,<7.0",
"jinja2>=3.0",
"ipython-genutils>=0.1",
"pyyaml>=5",
"cerberus>=1.1",
"lxml_html_clean"
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"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"
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
pretty-jupyter = "pretty_jupyter.__main__:cli"
[project.optional-dependencies]
docs = [
"sphinx==5.1.1",
"sphinx_rtd_theme==1.0.0"
]
test = [
"pytest",
"tox",
"webdriver-manager",
"selenium",
"pandas",
"ipykernel"
]
dev = [
"build",
"jupyter",
"ipykernel",
"pandas",
"matplotlib",
"seaborn",
"pip-tools",
"black",
"isort",
"pylint",
"autoflake",
"pre-commit",
"pretty-jupyter[docs]",
"pretty-jupyter[test]"
]
all = [
"pretty-jupyter[dev]"
]
[project.urls]
Source = "https://github.com/JanPalasek/pretty-jupyter"
"Bug Tracker" = "https://github.com/JanPalasek/pretty-jupyter/issues"
CI = "https://github.com/JanPalasek/pretty-jupyter/actions"
[tool.pylint.format]
max-line-length = 100
[tool.black]
line-length = 100 # override black's default line-length
[tool.isort]
# make it compatible with black
profile = "black"
line_length = 100