forked from jupyterlite/jupyterlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (40 loc) · 1.27 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
43
44
45
46
47
48
49
50
51
52
53
[project]
version = "0.1.0b15"
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = [ "jupyterlite",]
[tool.jupyter-releaser]
skip = [ "build-python", "check-links", "check-manifest",]
[tool.jupyter-releaser.hooks]
before-bump-version = [ "yarn", "python -m pip install jupyter-releaser -r requirements-build.txt -r requirements-lint.txt",]
after-bump-version = [ "doit repo:integrity", "doit lint", "yarn",]
before-build-npm = [ "doit build",]
after-check-npm = [ "doit dist", "rm dist/jupyterlite-app-*.tgz",]
[tool.jupyter-releaser.options]
version-cmd = "python scripts/bump-version.py --force"
[tool.tbump.version]
current = "0.1.0b15"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "package.json"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.file]]
src = "py/jupyterlite/src/jupyterlite/__init__.py"
[[tool.tbump.file]]
src = "packages/pyolite-kernel/py/piplite/piplite/__init__.py"
[[tool.tbump.file]]
src = "packages/pyolite-kernel/py/pyolite/pyolite/__init__.py"
[[tool.tbump.field]]
name = "channel"
default = ""
[[tool.tbump.field]]
name = "release"
default = ""