setup.py 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #!/usr/bin/env python
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2015 Philemon <mmgen-py@yandex.com>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. from distutils.core import setup
  19. setup(
  20. name = 'mmgen',
  21. decription = 'A complete Bitcoin cold-storage solution for the command line',
  22. version = '0.7.9',
  23. author = 'Philemon',
  24. author_email = 'mmgen-py@yandex.com',
  25. url = 'https://github.com/mmgen/mmgen',
  26. license = 'GNU GPL v3',
  27. platforms = 'Linux, MS Windows',
  28. keywords = 'Bitcoin, wallet, cold storage, offline storage, open-source, command-line, Python, Bitcoin Core, bitcoind',
  29. py_modules = [
  30. 'mmgen.__init__',
  31. 'mmgen.addr',
  32. 'mmgen.bitcoin',
  33. 'mmgen.config',
  34. 'mmgen.crypto',
  35. 'mmgen.license',
  36. 'mmgen.mn_electrum',
  37. 'mmgen.mnemonic',
  38. 'mmgen.mn_tirosh',
  39. 'mmgen.opts',
  40. 'mmgen.opt',
  41. 'mmgen.term',
  42. 'mmgen.test',
  43. 'mmgen.tool',
  44. 'mmgen.tx',
  45. 'mmgen.util',
  46. 'mmgen.main',
  47. 'mmgen.main_addrgen',
  48. 'mmgen.main_addrimport',
  49. 'mmgen.main_passchg',
  50. 'mmgen.main_pywallet',
  51. 'mmgen.main_tool',
  52. 'mmgen.main_txcreate',
  53. 'mmgen.main_txsend',
  54. 'mmgen.main_txsign',
  55. 'mmgen.main_walletchk',
  56. 'mmgen.main_walletgen',
  57. 'mmgen.share.__init__',
  58. 'mmgen.share.Opts',
  59. 'mmgen.rpc.__init__',
  60. 'mmgen.rpc.config',
  61. 'mmgen.rpc.connection',
  62. 'mmgen.rpc.data',
  63. 'mmgen.rpc.exceptions',
  64. 'mmgen.rpc.proxy',
  65. 'mmgen.rpc.util',
  66. 'test.__init__',
  67. 'test.test',
  68. 'test.tooltest',
  69. ],
  70. scripts=[
  71. 'mmgen-addrgen',
  72. 'mmgen-keygen',
  73. 'mmgen-addrimport',
  74. 'mmgen-passchg',
  75. 'mmgen-walletchk',
  76. 'mmgen-walletgen',
  77. 'mmgen-txcreate',
  78. 'mmgen-txsign',
  79. 'mmgen-txsend',
  80. 'mmgen-pywallet',
  81. 'mmgen-tool',
  82. ]
  83. )