|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools", "setuptools-scm"] |
3 | 2 | build-backend = "setuptools.build_meta"
|
| 3 | +requires = ["setuptools", "setuptools-scm"] |
4 | 4 |
|
5 | 5 | [project]
|
6 |
| -name = "pyscript" |
7 |
| -version = "0.2.5" |
8 |
| -description = "Command Line Interface for PyScript" |
9 | 6 | authors = [
|
10 |
| - { name = "Matt Kramer", email = "[email protected]"}, |
11 |
| - { name = "Fabio Pliger", email = "[email protected]"}, |
12 |
| - { name = "Nicholas Tollervey", email = "[email protected]"}, |
| 7 | + { name = "Matt Kramer", email = "[email protected]"}, |
| 8 | + { name = "Fabio Pliger", email = "[email protected]"}, |
| 9 | + { name = "Nicholas Tollervey", email = "[email protected]"} |
| 10 | +] |
| 11 | +dependencies = [ |
| 12 | + 'importlib-metadata; python_version<"3.8"', |
| 13 | + "Jinja2<3.2", |
| 14 | + "pluggy<1.1", |
| 15 | + "rich<13.0", |
| 16 | + "rich-click[typer]<1.4", |
| 17 | + "toml<0.11", |
| 18 | + "typer<0.5", |
| 19 | + "platformdirs<2.7" |
13 | 20 | ]
|
| 21 | +description = "Command Line Interface for PyScript" |
14 | 22 | license = {text = "Apache-2.0"}
|
| 23 | +name = "pyscript" |
15 | 24 | readme = "README.md"
|
16 | 25 | requires-python = ">=3.7"
|
17 |
| -dependencies = [ |
18 |
| - 'importlib-metadata; python_version<"3.8"', |
19 |
| - "Jinja2<3.2", |
20 |
| - "pluggy<1.1", |
21 |
| - "rich<13.0", |
22 |
| - "rich-click[typer]<1.4", |
23 |
| - "toml<0.11", |
24 |
| - "typer<0.5", |
25 |
| - "platformdirs<2.7", |
26 |
| -] |
| 26 | +version = "0.2.5" |
27 | 27 |
|
28 | 28 | [project.optional-dependencies]
|
29 | 29 | dev = [
|
30 |
| - "coverage<7.3", |
31 |
| - "mypy<=1.4.1", |
32 |
| - "pytest<7.5", |
33 |
| - "types-toml<0.11", |
| 30 | + "coverage<7.3", |
| 31 | + "mypy<=1.4.1", |
| 32 | + "pytest<7.5", |
| 33 | + "types-toml<0.11" |
34 | 34 | ]
|
35 | 35 | docs = [
|
36 |
| - "Sphinx<5.2", |
37 |
| - "sphinx-autobuild<2021.4.0", |
38 |
| - "sphinx-autodoc-typehints<1.20", |
39 |
| - "myst-parser<0.19.3", |
40 |
| - "pydata-sphinx-theme<0.13.4", |
| 36 | + "Sphinx<5.2", |
| 37 | + "sphinx-autobuild<2021.4.0", |
| 38 | + "sphinx-autodoc-typehints<1.20", |
| 39 | + "myst-parser<0.19.3", |
| 40 | + "pydata-sphinx-theme<0.13.4" |
41 | 41 | ]
|
42 | 42 |
|
43 | 43 | [project.scripts]
|
|
0 commit comments