diff --git a/CHANGELOG.md b/CHANGELOG.md index dab06f5a..2421abac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,9 @@ Scribe-Data tries to follow [semantic versioning](https://semver.org/), a MAJOR. Emojis for the following are chosen based on [gitmoji](https://gitmoji.dev/). -## [Upcoming] Scribe-Data 4.0.0 +## [Upcoming] Scribe-Data 4.x + +## Scribe-Data 4.0.0 ### ✨ Features diff --git a/README.md b/README.md index f946ef0c..d90c6225 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ [![mastodon](https://img.shields.io/badge/Mastodon-6364FF.svg?logo=mastodon&logoColor=ffffff)](https://wikis.world/@scribe) [![matrix](https://img.shields.io/badge/Matrix-000000.svg?logo=matrix&logoColor=ffffff)](https://matrix.to/#/#scribe_community:matrix.org) -### Wikidata, Wiktionary and Wikipedia language data extraction +### Wikidata and Wikipedia language data extraction **Scribe-Data** is a convenient command-line interface (CLI) for extracting and formatting language data from [Wikidata](https://www.wikidata.org/) and [Wikipedia](https://www.wikipedia.org/). Functionality includes allowing users to list, download, and manage language data directly from the terminal. diff --git a/docs/source/conf.py b/docs/source/conf.py index 575a167d..3272c155 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = "Scribe-Data developers" # The full version, including alpha/beta/rc tags -release = "3.3.0" +release = "4.0.0" # -- General configuration --------------------------------------------------- @@ -171,7 +171,7 @@ "Scribe-Data Documentation", author, "Scribe-Data", - "Wikidata, Wiktionary and Wikipedia language data extraction", + "Wikidata and Wikipedia language data extraction", "Miscellaneous", ) ] diff --git a/docs/source/index.rst b/docs/source/index.rst index bb5f90f6..55811179 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -35,7 +35,7 @@ .. |matrix| image:: https://img.shields.io/badge/Matrix-000000.svg?logo=matrix&logoColor=ffffff :target: https://matrix.to/#/#scribe_community:matrix.org -**Wikidata, Wiktionary and Wikipedia language data extraction** +**Wikidata and Wikipedia language data extraction** Installation ============ diff --git a/setup.py b/setup.py index a3c8e59c..d8080758 100644 --- a/setup.py +++ b/setup.py @@ -24,9 +24,9 @@ name="scribe-data", packages=find_packages(where="src"), package_dir={"": "src"}, - version="3.3.0", + version="4.0.0", author="Andrew Tavis McAllister", - author_email="andrew.t.mcallister@gmail.com", + author_email="team@scri.be", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -37,13 +37,14 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", ], python_requires=">=3.9", install_requires=requirements, package_data={"": ["2021_ranked.tsv"]}, include_package_data=True, - description="Wikidata, Wiktionary and Wikipedia language data extraction", + description="Wikidata and Wikipedia language data extraction", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/scribe-org/Scribe-Data",