-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
37 lines (29 loc) · 984 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
[tool.poetry]
name = "jupyterlab-codex"
version = "0.0.1"
description = ""
authors = ["Simon Liang <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
build = "^0.6.1"
jupyterlab = "^3.1.9"
twine = "^3.4.2"
# [build-system]
# requires = ["poetry>=0.12"]
jupyter-packaging = "^0.10.4"
# build-backend = "poetry.masonry.api"
[tool.jupyter-packaging.options]
skip-if-exists = ["jupyterlab_codex/labextension/static/style.js"]
ensured-targets = ["jupyterlab_codex/labextension/static/style.js", "jupyterlab_codex/labextension/package.json"]
[tool.jupyter-packaging.builder]
factory = "jupyter_packaging.npm_builder"
[tool.jupyter-packaging.build-args]
build_cmd = "build:prod"
npm = ["yarn"]
[tool.check-manifest]
ignore = ["jupyterlab_codex/labextension/**", "yarn.lock", ".*", "package-lock.json"]
[build-system]
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab~=3.1"]
build-backend = "jupyter_packaging.build_api"