setup.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. description = 'A complete Bitcoin cold-storage solution for the command line',
  22. version = '0.8.0',
  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.globalvars',
  34. 'mmgen.crypto',
  35. 'mmgen.filename',
  36. 'mmgen.license',
  37. 'mmgen.mn_electrum',
  38. 'mmgen.mnemonic',
  39. 'mmgen.mn_tirosh',
  40. 'mmgen.obj',
  41. 'mmgen.opts',
  42. 'mmgen.opt',
  43. 'mmgen.seed',
  44. 'mmgen.term',
  45. 'mmgen.test',
  46. 'mmgen.tool',
  47. 'mmgen.tx',
  48. 'mmgen.util',
  49. 'mmgen.main',
  50. 'mmgen.main_addrgen',
  51. 'mmgen.main_addrimport',
  52. 'mmgen.main_passchg',
  53. 'mmgen.main_pywallet',
  54. 'mmgen.main_tool',
  55. 'mmgen.main_txcreate',
  56. 'mmgen.main_txsend',
  57. 'mmgen.main_txsign',
  58. 'mmgen.main_walletchk',
  59. 'mmgen.main_walletgen',
  60. 'mmgen.share.__init__',
  61. 'mmgen.share.Opts',
  62. 'mmgen.rpc.__init__',
  63. 'mmgen.rpc.config',
  64. 'mmgen.rpc.connection',
  65. 'mmgen.rpc.data',
  66. 'mmgen.rpc.exceptions',
  67. 'mmgen.rpc.proxy',
  68. 'mmgen.rpc.util',
  69. 'test.__init__',
  70. 'test.test',
  71. 'test.tooltest',
  72. 'test.gentest',
  73. ],
  74. scripts=[
  75. 'mmgen-addrgen',
  76. 'mmgen-keygen',
  77. 'mmgen-addrimport',
  78. 'mmgen-passchg',
  79. 'mmgen-walletchk',
  80. 'mmgen-walletgen',
  81. 'mmgen-txcreate',
  82. 'mmgen-txsign',
  83. 'mmgen-txsend',
  84. 'mmgen-pywallet',
  85. 'mmgen-tool',
  86. ]
  87. )