-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.9 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
74
75
76
77
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "falconry-pygments-theme"
version = "0.2.0"
description = "Falconry Pygments styles"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
keywords = ["falcon-framework", "pygments", "pygments-style"]
authors = [
{name = "Vytautas Liuolia", email = "[email protected]" }
]
# maintainers = [
# {name = "A. Great Maintainer", email = "[email protected]" }
# ]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["pygments >= 1.5"]
[project.entry-points."pygments.styles"]
falconry-light = "falconry_pygments_theme.light:FalconryLightStyle"
falconry-dark = "falconry_pygments_theme.dark:FalconryDarkStyle"
[project.urls]
"Homepage" = "https://github.com/falconry/pygments-theme"
"Funding" = "https://opencollective.com/falcon"
"Chat" = "https://gitter.im/falconry/dev"
"Source" = "https://github.com/falconry/pygments-theme"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.ruff]
target-version = "py38"
format.quote-style = "single"
line-length = 79
[tool.ruff.lint]
select = [
"C9",
"E",
"F",
"W",
"I"
]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.isort]
case-sensitive = false
force-single-line = true
order-by-type = false
single-line-exclusions = [
"typing",
]
force-sort-within-sections = true
[tool.pytest]
testpaths = [
"tests",
]