Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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,

Expand All @@ -54,10 +55,6 @@
'nose',
],

data_files = [
('', ['LICENSE']),
],

license = 'MIT',

classifiers = [
Expand Down