-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.34 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
[project]
name = "ckanext-subscribe"
version = "1.1.0"
dynamic = ["dependencies", "optional-dependencies"]
description = "CKAN extension that allows users to subscribe to updates WITHOUT requiring login"
authors = [
{name = "David Read", email = "david.read@hackneyworkshop.com"}
]
maintainers = [
{name = "Liip AG", email = "ogdch@liip.ch"}
]
license = {text = "AGPL"}
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = [
"CKAN",
"email",
"subscription",
"notifications",
]
[project.urls]
Documentation = "https://github.com/liip/ckanext-subscribe"
Repository = "https://github.com/liip/ckanext-subscribe"
Issues = "https://github.com/liip/ckanext-subscribe/issues"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["dev-requirements.txt"] }}
[tool.isort]
profile = "black"
[project.entry-points."ckan.plugins"]
subscribe = "ckanext.subscribe.plugin:SubscribePlugin"