-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.33 KB
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyscript"
version = "0.2.5"
description = "Command Line Interface for PyScript"
authors = [
"Matt Kramer <mkramer@anaconda.com>",
"Fabio Pliger <fpliger@anaconda.com>",
"Nicholas Tollervey <ntollervey@anaconda.com>",
]
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 }
platformdirs = "^2.5.2"
[tool.poetry.dev-dependencies]
coverage = "^6.3.2"
mypy = "^0.950"
pytest = "^7.1.2"
types-toml = "^0.10.8"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"myst-parser",
"pydata-sphinx-theme",
]
[tool.poetry.scripts]
pyscript = "pyscript.cli:app"