-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
47 lines (42 loc) · 1.23 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
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup
import os
__version__ = "0.2.0"
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
install_requires = [
'python-secp256k1==0.2.0',
]
setup(
name='btc_hd_wallet',
version=__version__,
license="MIT",
author="Andrej Virgovic",
author_email="[email protected]",
description='Bitcoin HD paper wallet implementation.',
long_description=README,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
url='https://github.com/scgbckbone/btc-hd-wallet',
keywords=[
"bitcoin",
"btc",
"hierarchical deterministic wallet",
"BIP32",
"BIP85",
"BIP39",
],
packages=["btc_hd_wallet", "btc_hd_wallet/bip39_wordlist"],
zip_safe=False,
install_requires=install_requires,
test_suite="tests"
)