From 8d57b9fd7e8f6e7117777c579e92f47841b5b4ca Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 20 Aug 2019 16:12:38 +0200 Subject: [PATCH] Update to 1.0b2 --- .gitignore | 3 ++- setup.py | 2 +- test.py | 3 --- 3 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 test.py diff --git a/.gitignore b/.gitignore index a023010..8471041 100644 --- a/.gitignore +++ b/.gitignore @@ -124,4 +124,5 @@ dmypy.json .pyre/ # Terraria worlds -*.wld \ No newline at end of file +*.wld +.idea/ diff --git a/setup.py b/setup.py index a277e74..f04c06a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as f: setuptools.setup( name="lihzahrd", - version="1.0b1", + version="1.0b2", author="Stefano Pigozzi", author_email="ste.pigozzi@gmail.com", description="A Terraria world parser in Python", diff --git a/test.py b/test.py deleted file mode 100644 index 6890d3e..0000000 --- a/test.py +++ /dev/null @@ -1,3 +0,0 @@ -import lihzahrd - -lihzahrd.World.create_from_file("Small_Example.wld")