-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #554 from ckan/add-pyproject.toml
First iteration of pyproject.toml
- Loading branch information
Showing
3 changed files
with
58 additions
and
47 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[project] | ||
name = "ckanext-harvest" | ||
version = "1.5.6" | ||
description = "Harvesting interface plugin for CKAN, plus harvester for other CKAN sites" | ||
authors = [ | ||
{name = "Adrià Mercader", email = "amercadero@gmail.com"} | ||
] | ||
maintainers = [ | ||
{name = "CKAN Tech Team and contributors", email = "tech-team@ckan.org"}, | ||
{name = "Seitenbau Govdata"}, | ||
] | ||
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.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
keywords = [ | ||
"ckan", | ||
"ckanext", | ||
"harvesting", | ||
"federation", | ||
] | ||
dependencies = [] | ||
|
||
[project.urls] | ||
Homepage = "http://github.com/ckan/ckanext-harvest" | ||
Repository = "https://github.com/ckan/ckanext-harvest" | ||
Issues = "https://github.com/ckan/ckanext-harvest/issues" | ||
Changelog = "https://github.com/ckan/ckanext-harvest/blob/master/CHANGELOG.rst" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.entry-points."ckan.plugins"] | ||
harvest = "ckanext.harvest.plugin:Harvest" | ||
ckan_harvester = "ckanext.harvest.harvesters:CKANHarvester" | ||
|
||
# Test plugins | ||
test_harvester = "ckanext.harvest.tests.test_queue:MockHarvester" | ||
test_harvester2 = "ckanext.harvest.tests.test_queue2:MockHarvester" | ||
test_action_harvester = "ckanext.harvest.tests.test_action:MockHarvesterForActionTests" | ||
|
||
|
||
[project.entry-points."babel.extractors"] | ||
ckan = "ckan.lib.extract:extract_ckan" |
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
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