-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nbviewer-gui"
dynamic = ["version"]
description = "A Utility for previewing *.ipynb files in linux machines"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
authors = [{ name = "Jithin Johnson" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"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",
]
dependencies = [
"ipython==8.4.0",
"nbconvert==6.5.0",
"nbformat==5.4.0",
"PyQtWebEngine==5.15.5",
]
[project.scripts]
nbviewer = "nbviewer.main:main"
[project.urls]
"Bug Tracker" = "https://github.com/jithu7432/nb-viewer/issues"
Homepage = "https://github.com/jithu7432/nb-viewer"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "nbviewer.__version__"}