-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.09 KB
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm", "invoke"]
build-backend = "setuptools.build_meta"
[project]
name = "nbviewer"
dynamic = ["version", "dependencies", "readme"]
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
description= "Jupyter Notebook Viewer"
authors = [{name = "Jupyter Development Team", email = "jupyter@googlegroups.com"}]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Jupyter",
]
[project.urls]
Homepage = "https://nbviewer.org"
Funding = "https://jupyter.org/about"
Source = "https://github.com/jupyter/nbviewer"
Tracker = "https://github.com/jupyter/nbviewer/issues"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
where = [""]
include = ["nbviewer"]
[tool.setuptools.dynamic]
readme = { file = "README.md", content-type = "text/markdown" }
dependencies = { file = "requirements.in" }
# setuptools_scm needs a section to be present
[tool.setuptools_scm]
# we don't actually use setuptools_scm for versions,
# only the file-finder
fallback_version = "0.0.0"