-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.01 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
[project]
name = "ansimarkup"
version = "2.2.0"
authors = [
{ name="Georgi Valkov", email="georgi.t.valkov@gmail.com" },
]
description = "Produce colored terminal text with an xml-like markup"
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"colorama",
]
[project.urls]
"Homepage" = "https://github.com/gvalkov/python-ansimarkup"
[dependency-groups]
benchmark = [
"pastel>=0.2.1",
"plumbum>=1.8.3",
"rich>=10.11.0",
"termcolor>=1.1.0",
]
dev = [
"pytest>=7.0.1",
"pytest-cov>=4.0.0",
]
[tool.uv.build-backend]
module-name = "ansimarkup"
module-root = ""
[tool.ruff]
line-length = 120
[build-system]
requires = ["uv_build>=0.9.29,<0.10.0"]
build-backend = "uv_build"