forked from ckan/ckanext-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.03 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
[project]
name = "ckanext-qa"
version = "2.0"
description = "Quality Assurance plugin for CKAN"
authors = [
{name = "Open Knowledge Foundation, Cabinet Office & contributors", email="info@okfn.org"}
]
maintainers = [
{name = "CKAN Tech Team and contributors", email = "tech-team@ckan.org"}
]
license = {text = "AGPL"}
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = [
"ckan",
"ckanext",
"qa",
]
dependencies = []
[project.urls]
Homepage = "http://github.com/ckan/ckanext-qa"
Repository = "https://github.com/ckan/ckanext-qa"
Issues = "https://github.com/ckan/ckanext-qa/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.entry-points."ckan.plugins"]
qa = "ckanext.qa.plugin:QAPlugin"