-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.45 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
[build-system]
requires = ["poetry-core>=1.1.0b3"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.poetry]
name = "pyscript"
version = "0.2.4"
description = "Command Line Interface for PyScript"
authors = [
"Matt Kramer <[email protected]>",
"Fabio Pliger <[email protected]>",
"Nicholas Tollervey <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/pyscript/pyscript-cli"
readme = "README.md"
packages = [
{ include = "pyscript", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = {version = "^4.11.3", python = "3.7"}
Jinja2 = "^3.1.2"
pluggy = "^1.0.0"
rich = "^12.3.0"
rich-click = {extras = ["typer"], version = "^1.3.0"}
toml = "^0.10.2"
typer = "^0.4.1"
Sphinx = {version = "^5.1.1", optional = true}
sphinx-autobuild = {version = "^2021.3.14", optional = true}
sphinx-autodoc-typehints = {version = "^1.19.2", optional = true}
myst-parser = {version = "^0.18.0", optional = true}
pydata-sphinx-theme = {version = "^0.9.0", optional = true}
requests = "^2.28.1"
six = "^1.16.0"
nbconvert = "^7.0.0"
ipykernel = "^6.15.2"
[tool.poetry.dev-dependencies]
coverage = "^6.3.2"
mypy = "^0.950"
pytest = "^7.1.2"
types-toml = "^0.10.8"
pre-commit = "^2.20.0"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"myst-parser",
"pydata-sphinx-theme",
]
[tool.poetry.scripts]
pyscript = "pyscript.cli:app"