-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 998 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ckanext-latex"
description = "LaTeX syntax support for form and display"
version = "1.0.1"
keywords = []
authors = [
{name = "DataShades", email = "[email protected]"},
{name = "Oleksandr Cherniavskyi", email = "[email protected]"},
]
maintainers = [
{name = "DataShades", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = ["pytest-ckan", "ckanext-toolbelt", "requests-mock"]
dev = ["pytest-ckan", "ckanext-toolbelt", "requests-mock"]
[project.urls]
Homepage = "https://github.com/DataShades/ckanext-latex"
[project.entry-points."ckan.plugins"]
charts_view = "ckanext.latex.plugin:LatexPlugin"