-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.1 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pygments-systemrdl"
dynamic = ["version"]
dependencies = [
"pygments",
]
authors = [
{name="Alex Mykyta"},
]
description = "SystemRDL 2.0 lexer extension for Pygments"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"SystemRDL", "pygments",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Source = "https://github.com/SystemRDL/systemrdl-pygments"
Tracker = "https://github.com/SystemRDL/systemrdl-pygments/issues"
Changelog = "https://github.com/SystemRDL/systemrdl-pygments/releases"
[tool.setuptools.dynamic]
version = {attr = "rdl_pygments.__about__.__version__"}
[project.entry-points."pygments.lexers"]
rdllexer = "rdl_pygments.rdllexer:SystemRDLLexer"