From 8caeec66b9004c9bae9a27b0c8008091ba5f39f9 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 21 Sep 2013 21:32:29 -0500 Subject: include all pokemontools/ files in installs --- MANIFEST.in | 1 + pokemontools/crystalparts/old_parsers.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index d750b85..7bd0a47 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include README.md +recursive-include pokemontools * global-exclude *.pyc global-exclude .gitignore diff --git a/pokemontools/crystalparts/old_parsers.py b/pokemontools/crystalparts/old_parsers.py index b23ab5d..e07082d 100644 --- a/pokemontools/crystalparts/old_parsers.py +++ b/pokemontools/crystalparts/old_parsers.py @@ -4,8 +4,7 @@ Some old methods rescued from crystal.py import pointers -map_header_byte_size = ... -rom_interval = ... +map_header_byte_size = 9 all_map_headers = [] -- cgit v1.2.3 From 0da95fe05f9949125fe2b821c3f72a0ac5c826ea Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 21 Sep 2013 21:37:07 -0500 Subject: version bump to: v1.4.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f2c277e..709a7a8 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ requires = [ setup( name="pokemontools", - version="1.3.0", + version="1.4.0", description="Tools for compiling and disassembling Pokémon Red and Pokémon Crystal.", long_description=open("README.md", "r").read(), license="BSD", -- cgit v1.2.3 From 480593e472dd2efbfc4c643e1594ae10aef3dc2c Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 21 Sep 2013 21:39:51 -0500 Subject: also exclude .*.swp files --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 7bd0a47..de35aca 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include README.md recursive-include pokemontools * +global-exclude .*.swp global-exclude *.pyc global-exclude .gitignore global-exclude .DS_Store -- cgit v1.2.3 From 82fb73edc3850e3601f085d84f7bba03fe6d7076 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 21 Sep 2013 21:45:49 -0500 Subject: version bump to: v1.4.1 The previous version was uploaded with .swp files and a large libvba.so that was in my working directory. I regret everything. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 709a7a8..65c9842 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ requires = [ setup( name="pokemontools", - version="1.4.0", + version="1.4.1", description="Tools for compiling and disassembling Pokémon Red and Pokémon Crystal.", long_description=open("README.md", "r").read(), license="BSD", -- cgit v1.2.3