-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.11 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
43
44
45
46
47
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "safepyrun"
dynamic = ["version"]
description = "Safe(ish) running of python code"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "github@jhoward.fastmail.fm"}]
keywords = ['nbdev']
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"restrictedpython-async",
"restrictedpython",
"pyskills>=0.0.3",
"fastcore>=1.12.27",
"httpx",
"matplotlib>=3.10.8",
]
[project.optional-dependencies]
dev = ['numpy', 'matplotlib']
[project.urls]
Repository = "https://github.com/AnswerDotAI/safepyrun"
Documentation = "https://AnswerDotAI.github.io/safepyrun/"
[project.entry-points.nbdev]
safepyrun = "safepyrun._modidx:d"
[tool.setuptools.dynamic]
version = {attr = "safepyrun.__version__"}
[tool.setuptools.packages.find]
include = ["safepyrun"]
[project.scripts]
safepyrun = "safepyrun.core:cli"
[tool.nbdev]
allowed_metadata_keys = ['solveit_dialog_mode', 'solveit_ver']