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
|
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ipython_pygments_lexers"
authors = [
{name = "The IPython Development Team", email = "ipython-dev@python.org"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Framework :: IPython",
"License :: OSI Approved :: BSD License",
]
requires-python=">=3.8"
dependencies = [
"pygments"
]
dynamic=["version", "description"]
[project.entry-points."pygments.lexers"]
ipythonconsole = "ipython_pygments_lexers:IPythonConsoleLexer"
ipython = "ipython_pygments_lexers:IPythonLexer"
ipython3 = "ipython_pygments_lexers:IPython3Lexer"
[project.urls]
Source = "https://github.com/ipython/ipython-pygments-lexers"
[tool.flit.sdist]
include = [
"test_*.py",
]
|