forked from trezor/python-mnemonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (28 loc) · 906 Bytes
/
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
#!/usr/bin/env python3
import os
from setuptools import setup
CWD = os.path.dirname(os.path.realpath(__file__))
def read(*path: str) -> str:
filename = os.path.join(CWD, *path)
with open(filename, "r") as f:
return f.read()
setup(
name="mnemonic",
version="0.19",
author="Trezor",
author_email="info@trezor.io",
description="Implementation of Bitcoin BIP-0039",
long_description=read("README.rst"),
url="https://github.com/trezor/python-mnemonic",
packages=["mnemonic"],
package_data={"mnemonic": ["wordlist/*.txt", "py.typed"]},
zip_safe=False,
python_requires=">=3.5",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
],
)