Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from iotaledger/develop
Browse files Browse the repository at this point in the history
1.0.0b3
  • Loading branch information
todofixthis authored Jan 4, 2017
2 parents 3e943d6 + 23dd462 commit 4bc19d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
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

0 comments on commit 4bc19d8

Please sign in to comment.