-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.38 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
[project]
name = "rich-cli"
urls.homepage = "https://github.com/Textualize/rich-cli"
version = "1.8.1"
description = "Command Line Interface to Rich"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Will McGugan", email = "willmcgugan@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
"rich (>=12.4.0,<13.0.0)",
"click (>=8.0.0,<9.0.0)",
"requests (>=2.0.0,<3.0.0)",
"textual (>=0.1.18,<0.2.0)",
"rich-rst (>=1.1.7,<2.0.0)",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0" # required for locking in Poetry 2+
[project.scripts]
rich = "rich_cli.__main__:run"
[project.entry-points."pipx.run"]
rich-cli = "rich_cli.__main__:run"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = "22.3.0"
mypy = "0.942"
[dependency-groups]
dev = ["black==22.3.0", "mypy==0.942"]