From 81b7d82acda01a494575a93ac4c3356f9ccb146c Mon Sep 17 00:00:00 2001 From: MMDRZA <95309780+Pymmdrza@users.noreply.github.com> Date: Tue, 26 Sep 2023 03:48:46 +0300 Subject: [PATCH] Delete infoLib.py --- infoLib.py | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 infoLib.py diff --git a/infoLib.py b/infoLib.py deleted file mode 100644 index ba27dfe..0000000 --- a/infoLib.py +++ /dev/null @@ -1,51 +0,0 @@ -"""Cryptofuzz Basic Information""" -from __future__ import (absolute_import, division, print_function, unicode_literals) -import datetime as dt -import os - -PACK_NAME = "CryptoFuzz" -PACK_DESCRIPTION = "Generated and Converted Keys with any Type Foundation from Private Key [WIF Hexed Mnemonic and Binary Bytes seed] in Python" -PACK_VERSION = "1.6.9" -PACK_LICENSE = "MIT" -PACK_AUTHOR = "Mohammadreza (Mmdrza.Com)" -PACK_EMAIL = "Pymmdrza@gmail.com" -PACK_URL = "https://github.com/Pymmdrza/cryptofuzz" -PACK_ISSUES = 'https://github.com/Pymdrza/CryptoFuzz/issues' -PACK_DOCS_URL = 'https://github.com/Pymdrza/CryptoFuzz' -PACK_TYPE_README = 'text/markdown' - -PACK_KEYWORD = ["CryptoFuzz", "Wif", "Mnemonic", "Binary", "seed", "Foundation", "Private", "Key", "HEX", "Mnemonic", - "Binary", "Bytes", "bitcoin", "ethereum", "tron", "dogecoin", "zcash", "digibyte", "bitcoin gold", - "wallet", "bip32", "bip39", "litecoin", "qtum", "ravencoin", "BTC", "ETH", "TRX", "DOGE", "BTG", - "LTC", "ZEC", "AXE", "DASH"] -PACK_CLASSIFIERS = ["Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Topic :: Security :: Cryptography", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: Implementation :: CPython", - "Operating System :: OS Independent"] -PACK_COPYRIGHT = f"Copyright (C) 2023-{dt.date.today().year} - {PACK_AUTHOR}" -PACK_CURRENT_PATH = os.path.dirname(os.path.realpath(__file__)) -PACK_README = "README.md" -PACK_PROJECT_URLS = { - "Bug Tracker": PACK_ISSUES, - "Documentation": PACK_DOCS_URL, - "Source Code": PACK_URL, - "Website": "https://mmdrza.com" - } -PACK_REQUIREMENTS = ['hdwallet>=2.2.1' - 'setuptools>=38'] -PACK_SCRIPTS_CONSOLE = { - 'console_scripts': [ - 'cryptofuzz=cryptofuzz.CLI:__main__', - 'cryptofuzz-example=cryptofuzz.example:__main__' - ] -}