From bd9f285ebc920bf256d3fe66a99632dd58a6967b Mon Sep 17 00:00:00 2001 From: Victor Cabezas Date: Thu, 7 Apr 2016 19:39:50 +0200 Subject: [PATCH 1/2] Updated setup.py with required packages --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index a7a93c4..3c2b293 100644 --- a/setup.py +++ b/setup.py @@ -21,5 +21,9 @@ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5' + ], + requires = [ + 'python-dateutil==2.4.2', + 'future==0.15.2' ] ) From 725b083460cd4638e1097b257180969421dc8d7e Mon Sep 17 00:00:00 2001 From: Victor Cabezas Date: Thu, 7 Apr 2016 19:45:35 +0200 Subject: [PATCH 2/2] Fixed setup.py with install_requires --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3c2b293..306dd49 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,10 @@ setup( name = 'json2py', - version = '0.4', + version = '0.5', packages = ['json2py'], url = 'https://github.com/Wiston999/json2py', - download_url = 'https://github.com/Wiston999/json2py/tarball/v0.4', + download_url = 'https://github.com/Wiston999/json2py/tarball/v0.5', license = 'MIT', author = 'Victor Cabezas', author_email = 'wiston666@gmail.com', @@ -22,7 +22,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5' ], - requires = [ + install_requires = [ 'python-dateutil==2.4.2', 'future==0.15.2' ]