forked from hSaria/ChromaTerm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "chromaterm2"
dynamic = ["version"]
description = "Color your Terminal with Regex! (Maintained fork of ChromaTerm)"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "rgcr", email = "roger.dev@pm.me"},
]
maintainers = [
{name = "rgcr", email = "roger.dev@pm.me"},
]
# Original author: hSaria (sariahajjar@gmail.com)
keywords = ["terminal", "color", "regex", "highlighting", "cli"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"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",
"Topic :: Terminals",
"Topic :: Utilities",
]
dependencies = [
"psutil",
"pyyaml>=5.1",
]
[project.urls]
Homepage = "https://github.com/rgcr/ChromaTerm2"
Repository = "https://github.com/rgcr/ChromaTerm2.git"
Issues = "https://github.com/rgcr/ChromaTerm2/issues"
Changelog = "https://github.com/rgcr/ChromaTerm2/blob/main/CHANGELOG.md"
[project.scripts]
ct = "chromaterm.cli:main"
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"pytest>=8.4.1",
"twine>=6.1.0",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "chromaterm.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["chromaterm*"]