-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.bak
More file actions
50 lines (44 loc) · 1.26 KB
/
pyproject.bak
File metadata and controls
50 lines (44 loc) · 1.26 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
[build-system]
requires = [
"hatchling",
"setuptools",
"setuptools_scm[toml]>=6.0",
"build",
"hatch-requirements-txt"
]
build-backend = "hatchling.build"
[project]
name = "pygments_tsx"
license = "MIT"
authors = [
{ name="Jason Nichols", email="github@startupos.dev" },
{ name="Sean Conrad", email="github@startupos.dev"}
]
description = "A plugin for adding TSX support to Pygments based off the work of the JSX plugin."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: JavaScript",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Software Development",
"Topic :: Text Editors"
]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/StartupOS/pygments_tsx"
"Bug Tracker" = "https://github.com/StartupOS/pygments_tsx/issues"
"Source" = "https://github.com/StartupOS/pygments_tsx"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.hatch.version]
path = "VERSION.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project.entry-points."pygments.lexers"]
jsx="tsx:JsxLexer"
tsx="tsx:TypeScriptXLexer"