-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "datapusher-plus"
version = "2.0.0"
description = "Next-generation, extensible Data Ingestion framework for CKAN. Accelerated by qsv."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "AGPL-3.0-or-later" }
authors = [{ name = "datHere" }]
maintainers = [{ name = "datHere Engineering", email = "info@dathere.com" }]
keywords = [
"ckan",
"ckanext",
"datapusher",
"datastore",
"csv",
"qsv",
"data-ingestion",
"metadata",
"schema",
]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Database",
]
[project.urls]
Homepage = "https://github.com/dathere/datapusher-plus"
Repository = "https://github.com/dathere/datapusher-plus"
Issues = "https://github.com/dathere/datapusher-plus/issues"
Changelog = "https://github.com/dathere/datapusher-plus/blob/main/CHANGELOG.md"
Documentation = "https://github.com/dathere/datapusher-plus#readme"
[project.entry-points."ckan.plugins"]
datapusher_plus = "ckanext.datapusher_plus.plugin:DatapusherPlusPlugin"
[project.entry-points."babel.extractors"]
ckan = "ckan.lib.extract:extract_ckan"
[build-system]
requires = ["setuptools>=62.6.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { where = ["."], exclude = ["tests*"] } }
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { dev = { file = ["requirements-dev.txt"] } }