This repository was archived by the owner on Jan 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ For the full documentation of this library, please refer to the
6868.. _Create virtualenv : https://virtualenvwrapper.readthedocs.io/
6969.. _SWIG : http://www.swig.org/download.html
7070.. _Slack : http://slack.iotatoken.com/
71- .. _dedicated forum : http ://forum.iotatoken.com/
71+ .. _dedicated forum : https ://forum.iotatoken.com/
7272.. _official API : https://iota.readme.io/
7373.. _PyOTA Bug Tracker : https://github.com/iotaledger/iota.lib.py/issues
7474.. _tox : https://tox.readthedocs.io/
Original file line number Diff line number Diff line change 77from codecs import StreamReader , open
88from sys import version_info
99
10- from setuptools import setup
10+ from setuptools import find_packages , setup
1111
1212##
1313# Check Python version.
3939 name = 'PyOTA' ,
4040 description = 'IOTA API library for Python' ,
4141 url = 'https://github.com/iotaledger/iota.lib.py' ,
42- version = '1.0.0b2 ' ,
42+ version = '1.0.0b3 ' ,
4343
44- packages = ['iota' ],
44+ packages = ['iota' ] + ['iota.' + pkg for pkg in find_packages ('iota' )],
45+ package_data = {'' : ['LICENSE' ]},
4546
4647 long_description = long_description ,
4748
5455 'nose' ,
5556 ],
5657
57- data_files = [
58- ('' , ['LICENSE' ]),
59- ],
60-
6158 license = 'MIT' ,
6259
6360 classifiers = [
You can’t perform that action at this time.
0 commit comments