diff --git a/MANIFEST.in b/MANIFEST.in index c272036b..c7249012 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,4 +7,3 @@ recursive-include xpuz/assets * recursive-include xpuz/data * include xpuz/babel.cfg include xpuz/template.config.ini -include RENAMED.md \ No newline at end of file diff --git a/RENAMED.md b/RENAMED.md deleted file mode 100644 index 6fde7e01..00000000 --- a/RENAMED.md +++ /dev/null @@ -1,2 +0,0 @@ -# This project has moved to `xpuz` -`crossword_puzzle` was renamed to `xpuz` on 11/07/2024. Visit the new PyPi project page [here](https://pypi.org/project/xpuz/). \ No newline at end of file diff --git a/setup.py b/setup.py index 6a63f0cb..a100779d 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ setup( - name="crossword_puzzle", - version="2.2.97", # If I import crossword_puzzle.version.__version__, + name="xpuz", + version="2.2.98", # If I import xpuz.version.__version__, # setuptools fails to build the project for some reason author="Tomas Vana", - url="https://github.com/tomasvana10/crossword_puzzle", - description="Select, generate and play always-unique crosswords.", - long_description=open("RENAMED.md").read(), + url="https://github.com/tomasvana10/xpuz", + description="Design and play procedurally generated crosswords", + long_description=open("README.md").read(), long_description_content_type="text/markdown", packages=find_namespace_packages(exclude=["venv", "venv.*"]), license="MIT", @@ -28,7 +28,7 @@ ], entry_points={ "gui_scripts": [ - "crossword-ctk = crossword_puzzle.main:main" + "xpuz-ctk = xpuz.main:main" ] }, classifiers=[ diff --git a/xpuz/version.py b/xpuz/version.py index f8f4e1cd..ab7736ab 100644 --- a/xpuz/version.py +++ b/xpuz/version.py @@ -1 +1 @@ -__version__ = "2.2.97" +__version__ = "2.2.98"