From 4d26d345a594e43fe571222efdf6fbc222136191 Mon Sep 17 00:00:00 2001 From: Phoenix Zerin Date: Sat, 31 Dec 2016 20:22:24 -0500 Subject: [PATCH 1/2] Fixed forum URL. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1a56fbe..d5077e7 100644 --- a/README.rst +++ b/README.rst @@ -68,7 +68,7 @@ For the full documentation of this library, please refer to the .. _Create virtualenv: https://virtualenvwrapper.readthedocs.io/ .. _SWIG: http://www.swig.org/download.html .. _Slack: http://slack.iotatoken.com/ -.. _dedicated forum: http://forum.iotatoken.com/ +.. _dedicated forum: https://forum.iotatoken.com/ .. _official API: https://iota.readme.io/ .. _PyOTA Bug Tracker: https://github.com/iotaledger/iota.lib.py/issues .. _tox: https://tox.readthedocs.io/ From 23dd4623eec561059eba554a4f8ba358848bef6b Mon Sep 17 00:00:00 2001 From: Phoenix Zerin Date: Wed, 4 Jan 2017 09:23:47 -0500 Subject: [PATCH 2/2] Fix for subpackages not installing. --- setup.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 5d398bf..22a045c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from codecs import StreamReader, open from sys import version_info -from setuptools import setup +from setuptools import find_packages, setup ## # Check Python version. @@ -39,9 +39,10 @@ name = 'PyOTA', description = 'IOTA API library for Python', url = 'https://github.com/iotaledger/iota.lib.py', - version = '1.0.0b2', + version = '1.0.0b3', - packages = ['iota'], + packages = ['iota'] + ['iota.'+pkg for pkg in find_packages('iota')], + package_data = {'': ['LICENSE']}, long_description = long_description, @@ -54,10 +55,6 @@ 'nose', ], - data_files = [ - ('', ['LICENSE']), - ], - license = 'MIT', classifiers = [