forked from pygments/pygments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (66 loc) · 2.27 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Pygments"
dynamic = ["version"]
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
authors = [
{name = "Georg Brandl", email = "[email protected]"}
]
maintainers = [
{name = "Georg Brandl", email = "[email protected]"},
{name = "Matthäus G. Chajdas"},
{name = "Jean Abou Samra", email = "[email protected]"},
]
description = "Pygments is a syntax highlighting package written in Python."
# For PyPI, use a shorter description than README.rst.
readme = {file = "description.rst", content-type = "text/x-rst"}
keywords = ["syntax highlighting"]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
]
[project.optional-dependencies]
plugins = [] # kept for backwards compatibility
windows-terminal = ["colorama >= 0.4.6"]
[project.urls]
Homepage = "https://pygments.org"
Documentation = "https://pygments.org/docs"
Source = "https://github.com/pygments/pygments"
"Bug Tracker" = "https://github.com/pygments/pygments/issues"
Changelog = "https://github.com/pygments/pygments/blob/master/CHANGES"
[project.scripts]
pygmentize = "pygments.cmdline:main"
# Temporary workaround for https://github.com/pypa/hatch/issues/1054
[tool.hatch.build.targets.wheel]
packages = ["pygments"]
[tool.hatch.version]
path = "pygments/__init__.py"
[tool.ruff]
target-version = "py38"
lint.extend-select = [
"UP", # "pyupgrade"
]
extend-exclude = [
# These Python tests are purposefully invalid.
"tests/snippets",
"tests/examplefiles",
]