-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 1.19 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
41
42
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "execnb"
dynamic = ["version"]
description = "A description of your project"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "j@fast.ai"}]
keywords = ['some', 'keywords']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['fastcore>=1.10.4', 'ipython']
[project.urls]
Repository = "https://github.com/AnswerDotAI/execnb/"
Documentation = "https://AnswerDotAI.github.io/execnb/"
[project.entry-points.nbdev]
execnb = "execnb._modidx:d"
[project.optional-dependencies]
dev = ['matplotlib', 'Pillow', 'mistletoe']
[project.scripts]
exec_nb = "execnb.shell:exec_nb"
[tool.setuptools.dynamic]
version = {attr = "execnb.__version__"}
[tool.setuptools.packages.find]
include = ["execnb"]
[tool.nbdev]
allowed_metadata_keys = ['solveit_dialog_mode', 'solveit_ver']
allowed_cell_metadata_keys = ["solveit_ai"]
recursive = false
jupyter_hooks = true
custom_sidebar = false