-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (31 loc) · 1.16 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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "ckanext-drupal-api"
version = "0.7.2.post2"
description = ""
classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",]
keywords = [ "CKAN",]
requires-python = ">=3.8"
dependencies = [ "requests",]
authors = [
{name = "DataShades", email = "datashades@linkdigital.com.au"},
{name = "Sergey Motornyuk", email = "sergey.motornyuk@linkdigital.com.au"},
]
maintainers = [
{name = "DataShades", email = "datashades@linkdigital.com.au"},
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "AGPL"
[project.urls]
Homepage = "https://github.com/DataShades/ckanext-drupal-api"
[project.entry-points."ckan.plugins"]
drupal_api = "ckanext.drupal_api.plugin:DrupalApiPlugin"
[project.entry-points."babel.extractors"]
ckan = "ckan.lib.extract:extract_ckan"
[tool.setuptools.packages]
find = {}