123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #!/usr/bin/env python
- #
- # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
- # Copyright (C)2013-2015 Philemon <mmgen-py@yandex.com>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- from distutils.core import setup
- setup(
- name = 'mmgen',
- description = 'A complete Bitcoin cold-storage solution for the command line',
- version = '0.8.0',
- author = 'Philemon',
- author_email = 'mmgen-py@yandex.com',
- url = 'https://github.com/mmgen/mmgen',
- license = 'GNU GPL v3',
- platforms = 'Linux, MS Windows',
- keywords = 'Bitcoin, wallet, cold storage, offline storage, open-source, command-line, Python, Bitcoin Core, bitcoind',
- py_modules = [
- 'mmgen.__init__',
- 'mmgen.addr',
- 'mmgen.bitcoin',
- 'mmgen.globalvars',
- 'mmgen.crypto',
- 'mmgen.filename',
- 'mmgen.license',
- 'mmgen.mn_electrum',
- 'mmgen.mnemonic',
- 'mmgen.mn_tirosh',
- 'mmgen.obj',
- 'mmgen.opts',
- 'mmgen.opt',
- 'mmgen.seed',
- 'mmgen.term',
- 'mmgen.test',
- 'mmgen.tool',
- 'mmgen.tx',
- 'mmgen.util',
- 'mmgen.main',
- 'mmgen.main_addrgen',
- 'mmgen.main_addrimport',
- 'mmgen.main_passchg',
- 'mmgen.main_pywallet',
- 'mmgen.main_tool',
- 'mmgen.main_txcreate',
- 'mmgen.main_txsend',
- 'mmgen.main_txsign',
- 'mmgen.main_walletchk',
- 'mmgen.main_walletgen',
- 'mmgen.share.__init__',
- 'mmgen.share.Opts',
- 'mmgen.rpc.__init__',
- 'mmgen.rpc.config',
- 'mmgen.rpc.connection',
- 'mmgen.rpc.data',
- 'mmgen.rpc.exceptions',
- 'mmgen.rpc.proxy',
- 'mmgen.rpc.util',
- 'test.__init__',
- 'test.test',
- 'test.tooltest',
- 'test.gentest',
- ],
- scripts=[
- 'mmgen-addrgen',
- 'mmgen-keygen',
- 'mmgen-addrimport',
- 'mmgen-passchg',
- 'mmgen-walletchk',
- 'mmgen-walletgen',
- 'mmgen-txcreate',
- 'mmgen-txsign',
- 'mmgen-txsend',
- 'mmgen-pywallet',
- 'mmgen-tool',
- ]
- )
|