-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
79 lines (68 loc) · 2 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
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
name = "nbautoexport"
dynamic = ["version"]
description = "Automatically export Jupyter notebooks to various file formats (.py, .html, and more) on save."
readme = "README.md"
authors = [{ name = "DrivenData", email = "info@drivendata.org" }]
license = "MIT"
keywords = ["nbautoexport", "jupyter", "nbconvert"]
classifiers = [
"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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
dependencies = [
"importlib_metadata ; python_version < '3.8'",
"jupyter_core",
"nbconvert>=5.6.1",
"nbformat",
"notebook",
"packaging",
"pydantic",
"traitlets",
"typer>=0.3.0",
]
[project.scripts]
nbautoexport = "nbautoexport.nbautoexport:app"
[project.urls]
"Homepage" = "https://github.com/drivendataorg/nbautoexport"
"Repository" = "https://github.com/drivendataorg/nbautoexport"
"Documentation" = "https://nbautoexport.drivendata.org/"
"Bug Tracker" = "https://github.com/drivendataorg/nbautoexport/issues"
"Changelog" = "https://nbautoexport.drivendata.org/stable/changelog/"
[tool.pdm]
version = { source = "scm" }
[tool.black]
line-length = 99
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
[tool.mypy-nbautoexport._version]
ignore_errors = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=nbautoexport --cov-report=term --cov-report=html --cov-report=xml"
testpaths = ["tests"]
[tool.coverage.run]
source = ["nbautoexport"]
[tool.coverage.report]
include = ["nbautoexport/**/*.py"]