Skip to content

Commit

Permalink
Prepare setup.py to publish renamed project and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasvana10 committed Jul 11, 2024
1 parent f3790ee commit eee7009
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ recursive-include xpuz/assets *
recursive-include xpuz/data *
include xpuz/babel.cfg
include xpuz/template.config.ini
include RENAMED.md
2 changes: 0 additions & 2 deletions RENAMED.md

This file was deleted.

12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -28,7 +28,7 @@
],
entry_points={
"gui_scripts": [
"crossword-ctk = crossword_puzzle.main:main"
"xpuz-ctk = xpuz.main:main"
]
},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion xpuz/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2.97"
__version__ = "2.2.98"

0 comments on commit eee7009

Please sign in to comment.