forked from patrick91/rich-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 958 Bytes
/
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
[project]
name = "rich-toolkit"
version = "0.12.0"
description = "Rich toolkit for building command-line applications"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = ["rich>=13.7.1", "click>=8.1.7", "typing-extensions>=4.12.2"]
homepage = "https://github.com/patrick91/rich-toolkit"
repository = "https://github.com/patrick91/rich-toolkit"
documentation = "https://github.com/patrick91/rich-toolkit"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.2",
"pdbpp>=0.10.3",
"inline-snapshot>=0.12.1",
"uvicorn>=0.30.6",
"fastapi[standard]>=0.112.2",
]
lint = [
"mypy>=1.11.2",
]