forked from trezor/python-mnemonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (30 loc) · 889 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
from pathlib import Path
from setuptools import setup
CWD = Path(__file__).resolve().parent
setup(
name="mnemonic",
version="0.20",
author="Trezor",
author_email="[email protected]",
description="Implementation of Bitcoin BIP-0039",
long_description="\n".join(
(
(CWD / "README.rst").read_text(),
(CWD / "CHANGELOG.rst").read_text(),
)
),
url="https://github.com/trezor/python-mnemonic",
packages=["mnemonic"],
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
],
)