-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finalize all artwork for the game; Add Victory screen; Prepare config…
…uration for PyPi upload Signed-off-by: Krzysztof Furtak <[email protected]>
- Loading branch information
1 parent
3555751
commit 9e049f2
Showing
13 changed files
with
195 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,19 @@ | |
|
||
import bansoko | ||
|
||
|
||
setup( | ||
name="bansoko", | ||
version=bansoko.__version__, | ||
author="Krzysztof Furtak", | ||
author_email="[email protected]", | ||
url="https://github.com/kfurtak1024/bansoko", | ||
description="Space-themed Sokoban clone created in Python using Pyxel.", | ||
long_description=open( | ||
os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md") | ||
).read(), | ||
long_description_content_type="text/markdown", | ||
platforms="any", | ||
keywords="pyxel games", | ||
keywords="game puzzle sokoban 8-bit retro", | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
|
@@ -26,8 +26,8 @@ | |
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Games/Entertainment :: Puzzle Games" | ||
], | ||
install_requires=["setuptools", "pyxel"], | ||
packages=find_packages(exclude=["resbuilder"]), | ||
install_requires=["setuptools", "pyxel", "docopt", "jsonschema"], | ||
packages=find_packages(exclude=["resbuilder", "resbuilder.*"]), | ||
package_data={ | ||
"bansoko": ["gamedata/main.pyxres", "gamedata/main.meta"] | ||
}, | ||
|