Skip to content

Commit

Permalink
chore: switch ot pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
smotornyuk committed Oct 17, 2024
1 parent a580918 commit 00ee476
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 42 deletions.
46 changes: 46 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"

[project]
name = "ckanext-search-tweaks"
version = "0.6.1.post1"
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",]
keywords = [ "CKAN",]
dependencies = [ "freezegun", "typing_extensions>=4.0.0", "ckanext-toolbelt>=0.4.11",]
authors = [
{name = "DataShades", email = "[email protected]"},
{name = "Sergey Motornyuk", email = "[email protected]"},
]
maintainers = [
{name = "DataShades", email = "[email protected]"},
]

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.license]
text = "AGPL"

[project.urls]
Homepage = "https://github.com/DataShades/ckanext-search-tweaks"

[project.optional-dependencies]
advanced-search = []

[project.entry-points."ckan.plugins"]
search_tweaks = "ckanext.search_tweaks.plugin:SearchTweaksPlugin"
search_tweaks_query_relevance = "ckanext.search_tweaks.query_relevance.plugin:QueryRelevancePlugin"
search_tweaks_field_relevance = "ckanext.search_tweaks.field_relevance.plugin:FieldRelevancePlugin"
search_tweaks_spellcheck = "ckanext.search_tweaks.spellcheck.plugin:SpellcheckPlugin"
search_tweaks_advanced_search = "ckanext.search_tweaks.advanced_search.plugin:AdvancedSearchPlugin"
search_tweaks_query_popularity = "ckanext.search_tweaks.query_popularity.plugin:QueryPopularityPlugin"

[project.entry-points."babel.extractors"]
ckan = "ckan.lib.extract:extract_ckan"

[tool.setuptools.packages]
find = {}

[tool.black]
# line-length = 88
# preview = true
Expand Down
42 changes: 0 additions & 42 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,45 +1,3 @@
[metadata]
name = ckanext-search-tweaks
version = 0.6.1
description =
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/DataShades/ckanext-search-tweaks
author = Sergey Motornyuk
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
keywords = CKAN

[options]
packages = find:
namespace_packages = ckanext
install_requires =
freezegun
typing_extensions>=4.0.0
ckanext-toolbelt>=0.4.11
include_package_data = True

[options.entry_points]
ckan.plugins =
search_tweaks = ckanext.search_tweaks.plugin:SearchTweaksPlugin
search_tweaks_query_relevance = ckanext.search_tweaks.query_relevance.plugin:QueryRelevancePlugin
search_tweaks_field_relevance = ckanext.search_tweaks.field_relevance.plugin:FieldRelevancePlugin
search_tweaks_spellcheck = ckanext.search_tweaks.spellcheck.plugin:SpellcheckPlugin
search_tweaks_advanced_search = ckanext.search_tweaks.advanced_search.plugin:AdvancedSearchPlugin
search_tweaks_query_popularity = ckanext.search_tweaks.query_popularity.plugin:QueryPopularityPlugin

babel.extractors =
ckan = ckan.lib.extract:extract_ckan

[options.extras_require]
advanced-search =

[extract_messages]
keywords = translate isPlural
add_comments = TRANSLATORS:
Expand Down

0 comments on commit 00ee476

Please sign in to comment.