-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (40 loc) · 973 Bytes
/
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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "pyjs-code-runner"
description = "A driver to run wasm code from an emscripten-forge coda env like normal python code"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Thorsten Beier", email = "[email protected]" },
]
keywords = [
"pyjs_code_runner",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"appdirs",
"empack >=3.0.0",
"playwright",
"rich",
"typer",
]
dynamic = ["version"]
[tool.hatch.version]
path = "pyjs_code_runner/version.py"
[project.scripts]
pyjs_code_runner = "pyjs_code_runner.cli.main:app"
[project.urls]
Homepage = "https://github.com/emscripten-forge/pyjs-code-runner"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
]