-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NicholasCG
committed
Aug 18, 2021
1 parent
8e9eed8
commit 2a47827
Showing
2 changed files
with
7 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
__pycache__ | ||
/logs | ||
*.yaml | ||
!default_settings.yaml | ||
ignore.txt | ||
test.py | ||
test.py | ||
dist/ | ||
MANIFEST |
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 |
---|---|---|
@@ -1,20 +1,19 @@ | ||
from distutils.core import setup | ||
setup( | ||
name = 'HBTile', | ||
name = 'hbtile', | ||
packages = ['hbtile'], | ||
version = '1.0.0', | ||
version = '1.0.1', | ||
license='MIT', | ||
description = 'A library for simulating tile based games with separate attacking and directional movement', | ||
author = 'Nicholas Gray', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/NicholasCG/HBTile', | ||
download_url = 'https://github.com/NicholasCG/HBTile/archive/1.0.0.tar.gz', | ||
download_url = 'https://github.com/NicholasCG/HBTile/archive/1.0.1.tar.gz', | ||
keywords = ['python', 'hexagon', 'game', 'hbtile', 'hexy'], | ||
install_requires=[ | ||
'hexy', | ||
'pickle', | ||
'numpy', | ||
'yaml' | ||
'pyyaml' | ||
], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|