-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
78 lines (64 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "xontrib-jupyter"
version = "0.3.2"
description = "Xonsh kernel for Jupyter Notebook and Jupyter Lab allows to execute xonsh shell commands in a notebook cell"
authors = ["Xonsh Dev <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/xonsh/xontrib-jupyter"
keywords = ['xontrib', 'xonsh']
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
packages = [{ include = "xontrib" }, { include = "xonsh_jupyter" }]
[tool.poetry.urls]
Documentation = "https://github.com/xonsh/xontrib-jupyter/blob/master/README.md"
Code = "https://github.com/xonsh/xontrib-jupyter"
"Issue tracker" = "https://github.com/xonsh/xontrib-jupyter/issues"
[tool.poetry.dependencies]
python = ">=3.8"
xonsh = ">=0.12"
jupyter-client = ">=8"
[tool.poetry.dev-dependencies]
pytest = ">=6.0"
[tool.poetry.group.dev.dependencies]
poethepoet = "^0.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.executor]
type = "simple"
[tool.poe.tasks]
push-tags = [
{ cmd = "git push" },
{ cmd = "git push --tags" },
{ cmd = "poetry publish --build" },
]
release = [
{ shell = "git tag v$(poetry version --short)" },
{ cmd = "git add ." },
{ shell = 'git commit -am "new release $(poetry version --short)"' },
{ ref = "push-tags" },
]
[tool.ruff]
select = [
"E",
"F",
"B", # flake8-bugbear
"I", # isort
"UP", # pyupgrade
"SIM", # simplify
"TCH", # flake8-type-checking
"RUF", # ruff specific rules
]