-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak pyproject.toml and setuptools files
Consolidate all setuptools config in setup.cfg as per discussion in ckan/ckan#8456
- Loading branch information
Showing
3 changed files
with
41 additions
and
20 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 |
---|---|---|
|
@@ -3,33 +3,46 @@ name = "ckanext-dcat" | |
version = "2.0.0" | ||
description = "Plugins for exposing and consuming DCAT metadata on CKAN" | ||
authors = [ | ||
{name = "CKAN Tech Team and contributors", email = "[email protected]"} | ||
{name = "Adrià Mercader", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "CKAN Tech Team and contributors", email = "[email protected]"}, | ||
{name = "Seitenbau Govdata"}, | ||
{name = "Stefan Oderbolz"} | ||
] | ||
license = {text = "AGPL"} | ||
classifiers = [] | ||
keywords = [] | ||
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", | ||
"DCAT", | ||
"DCAT-AP", | ||
"Schema.org", | ||
"Linked data", | ||
"RDF", | ||
"Semantic data" | ||
] | ||
dependencies = [] | ||
|
||
[project.urls] | ||
Homepage = "http://github.com/ckan/ckanext-dcat" | ||
Documentation = "https://docs.ckan.org/projects/ckanext-dcat" | ||
Repository = "https://github.com/ckan/ckanext-dcat" | ||
Issues = "https://github.com/ckan/ckanext-dcat/issues" | ||
Changelog = "https://docs.ckan.org/projects/ckanext-dcat/en/latest/changelog/" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
#[build-system] | ||
#requires = ["setuptools", "wheel"] | ||
#build-backend = "setuptools.build_meta" | ||
# | ||
[tool.setuptools] | ||
#packages = ["ckanext"] | ||
#namespace-packages = ["ckanext"] | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
|
||
[project.entry-points."ckan.plugins"] | ||
dcat_xml_harvester = "ckanext.dcat.harvesters:DCATXMLHarvester" | ||
dcat_json_harvester = "ckanext.dcat.harvesters:DCATJSONHarvester" | ||
|
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