-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
68 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,71 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ckanext-bulk" | ||
version = "0.2.11" | ||
description = "Bulk update for CKAN datasets/resources" | ||
authors = [ | ||
{name = "DataShades", email = "[email protected]"}, | ||
{name = "Oleksandr Cherniavskyi", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "DataShades", email = "[email protected]"}, | ||
] | ||
license = {text = "AGPL"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"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", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
keywords = ["CKAN"] | ||
requires-python = ">= 3.8" | ||
dependencies = ["typing_extensions"] | ||
|
||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/DataShades/ckanext-bulk" | ||
|
||
[project.entry-points] | ||
"ckan.plugins" = {bulk = "ckanext.bulk.plugin:BulkPlugin"} | ||
"babel.extractors" = {ckan = "ckan.lib.extract:extract_ckan"} | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest-ckan", | ||
"pytest-benchmark", | ||
"pytest-pretty", | ||
] | ||
docs = [ | ||
"mkdocs", | ||
"mkdocs-material", | ||
"pymdown-extensions", | ||
"mkdocstrings[python]", | ||
] | ||
dev = [ | ||
"pytest-ckan", | ||
"pytest-benchmark", | ||
"pytest-pretty", | ||
"mkdocs", | ||
"mkdocs-material", | ||
"pymdown-extensions", | ||
"mkdocstrings[python]", | ||
"pre-commit", | ||
] | ||
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
|
||
[tool.ruff] | ||
target-version = "py38" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,3 @@ | ||
[metadata] | ||
name = ckanext-bulk | ||
version = 0.2.1 | ||
description = Bulk update for CKAN datasets/resources | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/Link Digital/ckanext-bulk | ||
author = mutantsan | ||
author_email = [email protected] | ||
license = AGPL | ||
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 | ||
Programming Language :: Python :: 3.12 | ||
Programming Language :: Python :: 3.13 | ||
keywords = CKAN | ||
|
||
[options] | ||
python_requires = >= 3.8 | ||
packages = find: | ||
namespace_packages = ckanext | ||
include_package_data = True | ||
install_requires = | ||
typing_extensions | ||
|
||
[options.entry_points] | ||
ckan.plugins = | ||
bulk = ckanext.bulk.plugin:BulkPlugin | ||
|
||
babel.extractors = | ||
ckan = ckan.lib.extract:extract_ckan | ||
|
||
[options.extras_require] | ||
test = | ||
pytest-ckan | ||
pytest-benchmark | ||
pytest-pretty | ||
|
||
docs = | ||
mkdocs | ||
mkdocs-material | ||
pymdown-extensions | ||
mkdocstrings[python] | ||
|
||
dev = | ||
%(test)s | ||
%(docs)s | ||
pre-commit | ||
|
||
[extract_messages] | ||
keywords = translate isPlural | ||
add_comments = TRANSLATORS: | ||
|