2024-10-18 10:32:06 +00:00
|
|
|
# MMGen Wallet, a terminal-based cryptocurrency wallet
|
2026-02-11 13:02:12 +00:00
|
|
|
# Copyright (C)2013-2026 The MMGen Project <mmgen@tuta.io>
|
2023-10-11 12:58:47 +00:00
|
|
|
# Licensed under the GNU General Public License, Version 3:
|
|
|
|
|
# https://www.gnu.org/licenses
|
|
|
|
|
# Public project repositories:
|
2023-11-17 09:04:14 +00:00
|
|
|
# https://github.com/mmgen/mmgen-wallet
|
|
|
|
|
# https://gitlab.com/mmgen/mmgen-wallet
|
2023-10-11 12:58:47 +00:00
|
|
|
|
2021-09-23 21:15:33 +00:00
|
|
|
[metadata]
|
2023-11-08 08:11:28 +00:00
|
|
|
name = mmgen-wallet
|
2021-09-23 21:15:33 +00:00
|
|
|
version = file: mmgen/data/version
|
|
|
|
|
description = MMGen cryptocurrency wallet suite
|
|
|
|
|
long_description = file: README.md
|
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
|
author = The MMGen Project
|
|
|
|
|
author_email = mmgen@tuta.io
|
2023-11-17 09:04:14 +00:00
|
|
|
url = https://github.com/mmgen/mmgen-wallet
|
2021-09-23 21:15:33 +00:00
|
|
|
license = GNU GPL v3
|
2024-09-29 11:59:53 +00:00
|
|
|
platforms = Linux, Armbian, Raspbian, MS Windows, MacOS
|
2021-09-23 21:15:33 +00:00
|
|
|
keywords = file: mmgen/data/keywords
|
|
|
|
|
project_urls =
|
2023-11-10 16:00:48 +00:00
|
|
|
Website = https://mmgen-wallet.cc
|
2025-03-29 09:30:10 +00:00
|
|
|
Repository = https://github.com/mmgen/mmgen-wallet.git
|
2023-11-17 09:04:14 +00:00
|
|
|
Documentation = https://github.com/mmgen/mmgen-wallet/wiki
|
2025-03-29 09:30:10 +00:00
|
|
|
Changelog = https://github.com/mmgen/mmgen-wallet/commits/master
|
|
|
|
|
Download = https://github.com/mmgen/mmgen-wallet/releases
|
|
|
|
|
Issues = https://github.com/mmgen/mmgen-wallet/issues
|
|
|
|
|
Github = https://github.com/mmgen/mmgen-wallet
|
|
|
|
|
Gitlab = https://gitlab.com/mmgen/mmgen-wallet
|
|
|
|
|
Reddit = https://www.reddit.com/user/mmgen-py
|
|
|
|
|
Twitter = https://x.com/TheMMGenProject
|
|
|
|
|
Keybase = https://keybase.io/mmgen
|
2021-09-23 21:15:33 +00:00
|
|
|
classifiers =
|
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
|
Operating System :: Microsoft :: Windows
|
2024-09-22 10:36:49 +00:00
|
|
|
Operating System :: MacOS
|
2023-11-10 16:00:48 +00:00
|
|
|
Environment :: Console
|
2024-09-22 10:36:49 +00:00
|
|
|
Programming Language :: Python :: 3
|
|
|
|
|
Programming Language :: C
|
|
|
|
|
Framework :: AsyncIO
|
|
|
|
|
Framework :: aiohttp
|
2023-11-10 16:00:48 +00:00
|
|
|
Topic :: Office/Business :: Financial
|
|
|
|
|
Topic :: Security :: Cryptography
|
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
2024-09-22 10:36:49 +00:00
|
|
|
Topic :: Utilities
|
|
|
|
|
Topic :: Software Development :: User Interfaces
|
|
|
|
|
Topic :: Software Development :: Testing
|
|
|
|
|
Topic :: Software Development :: Testing :: Mocking
|
|
|
|
|
Topic :: Software Development :: Testing :: Unit
|
|
|
|
|
Intended Audience :: Developers
|
|
|
|
|
Intended Audience :: End Users/Desktop
|
|
|
|
|
Intended Audience :: Financial and Insurance Industry
|
|
|
|
|
Intended Audience :: System Administrators
|
2023-11-10 16:00:48 +00:00
|
|
|
Development Status :: 5 - Production/Stable
|
2021-09-23 21:15:33 +00:00
|
|
|
|
|
|
|
|
[options]
|
2025-09-23 09:20:53 +00:00
|
|
|
python_requires = >=3.11
|
2021-09-23 21:15:33 +00:00
|
|
|
include_package_data = True
|
2021-09-26 21:16:55 +00:00
|
|
|
|
2021-09-23 21:15:33 +00:00
|
|
|
install_requires =
|
|
|
|
|
gmpy2
|
|
|
|
|
cryptography
|
|
|
|
|
pynacl
|
|
|
|
|
ecdsa
|
2025-10-01 15:30:57 +00:00
|
|
|
aiohttp
|
2021-09-23 21:15:33 +00:00
|
|
|
requests
|
|
|
|
|
pexpect
|
2025-03-15 18:24:54 +00:00
|
|
|
lxml
|
2025-09-15 09:28:41 +00:00
|
|
|
scrypt
|
2022-01-05 11:53:48 +00:00
|
|
|
semantic-version; platform_system != "Windows" # scripts/create-token.py
|
2021-09-23 21:15:33 +00:00
|
|
|
|
|
|
|
|
packages =
|
|
|
|
|
mmgen
|
2023-11-30 10:53:40 +00:00
|
|
|
mmgen.altcoin
|
2026-05-08 13:34:25 +00:00
|
|
|
mmgen.autosign
|
2024-01-26 10:54:03 +00:00
|
|
|
mmgen.bip_hd
|
2022-06-09 11:18:09 +00:00
|
|
|
mmgen.contrib
|
|
|
|
|
mmgen.data
|
2023-04-24 13:23:43 +00:00
|
|
|
mmgen.help
|
2024-08-26 14:44:09 +00:00
|
|
|
mmgen.platform
|
|
|
|
|
mmgen.platform.darwin
|
2022-02-03 20:40:42 +00:00
|
|
|
mmgen.proto
|
2022-10-03 09:59:59 +00:00
|
|
|
mmgen.proto.bch
|
|
|
|
|
mmgen.proto.btc
|
2025-05-23 15:35:23 +00:00
|
|
|
mmgen.proto.btc.rpc
|
2022-10-03 10:00:00 +00:00
|
|
|
mmgen.proto.btc.tx
|
|
|
|
|
mmgen.proto.btc.tw
|
2025-06-10 20:34:07 +03:00
|
|
|
mmgen.proto.cosmos
|
|
|
|
|
mmgen.proto.cosmos.tx
|
2022-10-03 09:59:59 +00:00
|
|
|
mmgen.proto.etc
|
|
|
|
|
mmgen.proto.eth
|
2022-10-03 10:00:00 +00:00
|
|
|
mmgen.proto.eth.pyethereum
|
|
|
|
|
mmgen.proto.eth.rlp
|
|
|
|
|
mmgen.proto.eth.rlp.sedes
|
2025-05-23 15:35:23 +00:00
|
|
|
mmgen.proto.eth.rpc
|
2022-10-03 10:00:00 +00:00
|
|
|
mmgen.proto.eth.tx
|
|
|
|
|
mmgen.proto.eth.tw
|
2022-10-03 09:59:59 +00:00
|
|
|
mmgen.proto.ltc
|
2025-05-21 09:13:42 +00:00
|
|
|
mmgen.proto.rune
|
2025-05-28 11:40:40 +00:00
|
|
|
mmgen.proto.rune.rpc
|
|
|
|
|
mmgen.proto.rune.tw
|
2025-06-10 20:34:07 +03:00
|
|
|
mmgen.proto.rune.tx
|
2022-10-04 13:08:54 +00:00
|
|
|
mmgen.proto.secp256k1
|
2025-06-12 12:48:38 +00:00
|
|
|
mmgen.proto.vm
|
|
|
|
|
mmgen.proto.vm.tx
|
2025-05-21 09:13:42 +00:00
|
|
|
mmgen.proto.xchain
|
2022-10-03 09:59:59 +00:00
|
|
|
mmgen.proto.xmr
|
2025-11-15 09:50:21 +00:00
|
|
|
mmgen.proto.xmr.tw
|
2025-12-01 16:54:36 +00:00
|
|
|
mmgen.proto.xmr.tx
|
2022-10-03 09:59:59 +00:00
|
|
|
mmgen.proto.zec
|
2025-05-23 15:35:23 +00:00
|
|
|
mmgen.rpc
|
|
|
|
|
mmgen.rpc.backends
|
2025-02-24 11:27:49 +00:00
|
|
|
mmgen.swap
|
|
|
|
|
mmgen.swap.proto
|
|
|
|
|
mmgen.swap.proto.thorchain
|
2022-02-03 20:40:42 +00:00
|
|
|
mmgen.tool
|
2022-02-03 20:40:43 +00:00
|
|
|
mmgen.tx
|
2022-02-10 12:51:41 +00:00
|
|
|
mmgen.tw
|
2022-02-08 13:03:32 +00:00
|
|
|
mmgen.wallet
|
2022-02-10 12:51:42 +00:00
|
|
|
mmgen.wordlist
|
2024-10-18 10:32:07 +00:00
|
|
|
mmgen.xmrwallet
|
|
|
|
|
mmgen.xmrwallet.file
|
|
|
|
|
mmgen.xmrwallet.ops
|
2021-09-23 21:15:33 +00:00
|
|
|
|
|
|
|
|
scripts =
|
|
|
|
|
cmds/mmgen-addrgen
|
|
|
|
|
cmds/mmgen-addrimport
|
|
|
|
|
cmds/mmgen-autosign
|
2025-03-10 14:28:55 +00:00
|
|
|
cmds/mmgen-cli
|
2021-09-23 21:15:33 +00:00
|
|
|
cmds/mmgen-keygen
|
2022-03-27 13:42:43 +00:00
|
|
|
cmds/mmgen-msg
|
2021-09-23 21:15:33 +00:00
|
|
|
cmds/mmgen-passchg
|
|
|
|
|
cmds/mmgen-passgen
|
|
|
|
|
cmds/mmgen-regtest
|
|
|
|
|
cmds/mmgen-seedjoin
|
|
|
|
|
cmds/mmgen-seedsplit
|
|
|
|
|
cmds/mmgen-subwalletgen
|
2025-02-15 09:54:18 +00:00
|
|
|
cmds/mmgen-swaptxcreate
|
|
|
|
|
cmds/mmgen-swaptxdo
|
2021-09-23 21:15:33 +00:00
|
|
|
cmds/mmgen-tool
|
|
|
|
|
cmds/mmgen-txbump
|
|
|
|
|
cmds/mmgen-txcreate
|
|
|
|
|
cmds/mmgen-txdo
|
|
|
|
|
cmds/mmgen-txsend
|
|
|
|
|
cmds/mmgen-txsign
|
|
|
|
|
cmds/mmgen-walletchk
|
|
|
|
|
cmds/mmgen-walletconv
|
|
|
|
|
cmds/mmgen-walletgen
|
|
|
|
|
cmds/mmgen-xmrwallet
|