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/ 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 = [