Skip to content

Commit

Permalink
Fix dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasCG committed Aug 18, 2021
1 parent 8e9eed8 commit 2a47827
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .gitignore
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
9 changes: 4 additions & 5 deletions setup.py
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',
Expand Down

0 comments on commit 2a47827

Please sign in to comment.