modified: MANIFEST

modified:   setup.py
This commit is contained in:
The MMGen Project 2013-12-17 12:20:28 +04:00
commit 5171abf97f
2 changed files with 33 additions and 6 deletions

View file

@ -14,7 +14,6 @@ mmgen/__init__.py
mmgen/addr.py
mmgen/bitcoin.py
mmgen/config.py
mmgen/connection.py
mmgen/license.py
mmgen/mn_electrum.py
mmgen/mn_tirosh.py
@ -22,3 +21,20 @@ mmgen/mnemonic.py
mmgen/tx.py
mmgen/utils.py
mmgen/walletgen.py
mmgen/rpc/__init__.py
mmgen/rpc/config.py
mmgen/rpc/connection.py
mmgen/rpc/data.py
mmgen/rpc/exceptions.py
mmgen/rpc/proxy.py
mmgen/rpc/util.py
scripts/bitcoind-walletunlock.py
scripts/deinstall.sh
tests/addr.py
tests/bitcoin.py
tests/mn_electrum.py
tests/mn_tirosh.py
tests/mnemonic.py
tests/test.py
tests/utils.py
tests/walletgen.py

View file

@ -3,16 +3,16 @@ from distutils.core import setup
setup(
name = 'mmgen',
version = '0.6.2',
version = '0.6.3',
author = 'Philemon',
author_email = 'mmgen-py@yandex.com',
url = 'https://github.com/mmgen/mmgen',
py_modules = [
'mmgen.__init__',
'mmgen.addr',
'mmgen.bitcoin',
'mmgen.config',
'mmgen.license',
'mmgen.__init__',
'mmgen.mn_electrum',
'mmgen.mnemonic',
'mmgen.mn_tirosh',
@ -20,8 +20,15 @@ setup(
'mmgen.tx',
'mmgen.utils',
'mmgen.walletgen',
'mmgen.connection',
'mmgen.proxy',
'mmgen.rpc.__init__',
'mmgen.rpc.config',
'mmgen.rpc.connection',
'mmgen.rpc.data',
'mmgen.rpc.exceptions',
'mmgen.rpc.proxy',
'mmgen.rpc.util',
'tests.addr',
'tests.bitcoin',
'tests.mn_electrum',
@ -41,5 +48,9 @@ setup(
'mmgen-txcreate',
'mmgen-txsign',
'mmgen-txsend'
])]
])],
scripts=[
'scripts/bitcoind-walletunlock.py',
'scripts/deinstall.sh'
]
)