diff --git a/website/meta/universe.json b/website/meta/universe.json
index d7c99956b..661f5da12 100644
--- a/website/meta/universe.json
+++ b/website/meta/universe.json
@@ -1,5 +1,31 @@
{
"resources": [
+ {
+ "id": "grecy",
+ "title": "greCy",
+ "slogan": "Ancient Greek pipelines for spaCy",
+ "description": "greCy offers state-of-the-art pipelines for ancient Greek NLP. The repository makes language models available in various sizes, some of them containing floret word vectors and a BERT transformer layer.",
+ "github": "jmyerston/greCy",
+ "code_example": [
+ "import spacy",
+ "#After installing the grc_ud_proiel_trf wheel package from the greCy repository",
+ "",
+ "nlp = spacy.load('grc_ud_proiel_trf')",
+ "doc = nlp('δοκῶ μοι περὶ ὧν πυνθάνεσθε οὐκ ἀμελέτητος εἶναι.')",
+ "",
+ "for token in doc:",
+ " print(token.text, token.norm_, token.lemma_, token.pos_, token.tag_)"
+ ],
+ "code_language": "python",
+ "author": "Jacobo Myerston",
+ "author_links": {
+ "twitter": "@jcbmyrstn",
+ "github": "jmyerston",
+ "website": "https://huggingface.co/spaces/Jacobo/syntax"
+ },
+ "category": ["pipeline", "research"],
+ "tags": ["ancient Greek"]
+ },
{
"id": "spacy-cleaner",
"title": "spacy-cleaner",
@@ -531,17 +557,6 @@
"tags": ["sentiment", "textblob"],
"spacy_version": 3
},
- {
- "id": "spacy-ray",
- "title": "spacy-ray",
- "slogan": "Parallel and distributed training with spaCy and Ray",
- "description": "[Ray](https://ray.io/) is a fast and simple framework for building and running **distributed applications**. This very lightweight extension package lets you use Ray for parallel and distributed training with spaCy. If `spacy-ray` is installed in the same environment as spaCy, it will automatically add `spacy ray` commands to your spaCy CLI.",
- "github": "explosion/spacy-ray",
- "pip": "spacy-ray",
- "category": ["training"],
- "author": "Explosion / Anyscale",
- "thumb": "https://i.imgur.com/7so6ZpS.png"
- },
{
"id": "spacy-sentence-bert",
"title": "spaCy - sentence-transformers",