forked from ethankosakovsky/bip85
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (29 loc) · 1.02 KB
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
CWD = os.path.dirname(os.path.realpath(__file__))
def read(*path):
filename = os.path.join(CWD, *path)
with open(filename, "r") as f:
return f.read()
setup(
packages=find_packages(),
name="bipentropy",
version="0.1",
author="Ethan Kosakovsky",
author_email="ethankosakovsky@protonmail.com",
description="Implementation of Bitcoin BIP Entropy",
long_description=read("README.md"),
url="https://github.com/ethankosakovsky/bipentropy",
download_url="https://github.com/ethankosakovsky/bipentropy/archive/0.1.tar.gz",
install_requires=["mnemonic", "pycoin", "base58", "pytest"],
zip_safe=False,
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)