Skip to content

Commit

Permalink
version bump and metadata update
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Feb 22, 2023
1 parent 1722246 commit 0ffbb58
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 5 deletions.
51 changes: 50 additions & 1 deletion codemeta-harvest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,55 @@
"@type": "SoftwareApplication",
"identifier": "frog",
"name": "frog",
"version": ">= 0.24"
"version": ">= 0.27"
},
"funding": [
{
"@type": "Grant",
"name": "CLARIN-NL (NWO grant 184.021.003)",
"url": "https://www.clariah.nl",
"funder": {
"@type": "Organization",
"name": "NWO",
"url": "https://www.nwo.nl"
}
},
{
"@type": "Grant",
"name": "CLARIAH-CORE (NWO grant 184.033.101)",
"url": "https://www.clariah.nl",
"funder": {
"@type": "Organization",
"name": "NWO",
"url": "https://www.nwo.nl"
}
},
{
"@type": "Grant",
"name": "CLARIAH-PLUS (NWO grant 184.034.023)",
"funder": {
"@type": "Organization",
"name": "NWO",
"url": "https://www.nwo.nl"
}
}
],
"applicationCategory": [ "https://vocabs.dariah.eu/tadirah/annotating", "https://vocabs.dariah.eu/tadirah/tagging", "https://vocabs.dariah.eu/tadirah/namedEntityRecognition", "https://vocabs.dariah.eu/tadirah/posTagging", "https://vocabs.dariah.eu/tadirah/segmenting", "https://vocabs.dariah.eu/tadirah/treeTagging", "https://vocabs.dariah.eu/tadirah/contextualizing" , "https://w3id.org/nwo-research-fields#Linguistics", "https://w3id.org/nwo-research-fields#TextualAndContentAnalysis" ],
"developmentStatus": [ "https://www.repostatus.org/#active", "https://w3id.org/research-technology-readiness-levels#Level8Complete" ],
"producer": {
"@id": "https://huc.knaw.nl",
"@type": "Organization",
"name": "KNAW Humanities Cluster",
"url": "https://huc.knaw.nl",
"parentOrganization": {
"@id": "https://knaw.nl",
"@type": "Organization",
"name": "KNAW",
"url": "https://knaw.nl",
"location": {
"@type": "Place",
"name": "Amsterdam"
}
}
}
}
4 changes: 2 additions & 2 deletions frog_webservice/frog_webservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import os
from base64 import b64decode as D

REQUIRE_VERSION = "3.1.4"
REQUIRE_VERSION = "3.2.4"
WRAPPERDIR = frog_webservice.__path__[0]

#============== General metadata =================
Expand All @@ -35,7 +35,7 @@
SYSTEM_NAME = "Frog Webservice"
SYSTEM_DESCRIPTION = "Frog is a suite containing a tokeniser, Part-of-Speech tagger, lemmatiser, morphological analyser, shallow parser, and dependency parser for Dutch."

SYSTEM_VERSION = "2.3"
SYSTEM_VERSION = "2.4"

SYSTEM_AUTHOR = "Ko van der Sloot, Antal van den Bosch, Maarten van Gompel, Bertjan Busser"

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def getreadme():

setup(
name = "Frog Webservice",
version = "2.3", #make sure SYSTEM_VERSION in your service configuration is set to the same value!
version = "2.4", #make sure SYSTEM_VERSION in your service configuration is set to the same value!
author = "Maarten van Gompel", #adapt this
description = ("Frog is a suite containing a tokeniser, Part-of-Speech tagger, lemmatiser, morphological analyser, shallow parser, and dependency parser for Dutch. This is the webservice for it, for both humans and machines."),
license = "GPLv3",
Expand All @@ -39,5 +39,5 @@ def getreadme():
],
package_data = {'frog_webservice':['*.wsgi','*.yml','*.sh'] },
include_package_data=True,
install_requires=['CLAM >= 3.1.4', 'FoLiA-tools'] #Frog is also required but is an external dependency that setuptools can't handle, we specify it in codemeta-harvest.json for metadata harvesting purposes
install_requires=['CLAM >= 3.2.4', 'FoLiA-tools'] #Frog is also required but is an external dependency that setuptools can't handle, we specify it in codemeta-harvest.json for metadata harvesting purposes
)

0 comments on commit 0ffbb58

Please sign in to comment.