forked from Blockthon/Blockthon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="Blockthon",
version="1.3.6",
author="Pymmdrza",
author_email="[email protected]",
description="Blockthon: Fast and easy generation of Private Keys and Mnemonics, converting Seed, Binary, and Decimal.",
keywords=['blockthon','bitcoin', 'ethereum', 'tron', 'dogecoin', 'dash', 'qtum', 'litecoin', 'bitcoingold', 'wallet', 'private key', 'mnemonic', 'seed', 'binary', 'hex', 'hunter', 'compress', 'un compress', 'compress address', 'un compress address'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Blockthon/Blockthon",
project_urls={
"Documentation": "https://blockthon.readthedocs.io",
"Personal Website": "https://mmdrza.com",
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'bit==0.8.0',
'hdwallet==2.2.1',
'requests==2.28.2',
'requests-html==0.10.0',
'ecdsa==0.18.0',
'bip-utils==2.7.1',
'bip32utils==0.3.post4',
'pycryptodome==3.18.0',
'pbkdf2==1.3',
'base58==2.1.1'
],
)