-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (42 loc) · 987 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
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ansimarkup"
version = "2.1.0"
authors = [
{ name="Georgi Valkov", email="[email protected]" },
]
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"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
benchmark = [
"termcolor",
"colr",
"pastel",
"plumbum",
"rich",
]
[tool.setuptools]
packages = ["ansimarkup"]
[tool.black]
line_length = 120