forked from alandefreitas/python-shamir-bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.05 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.05 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
35
36
37
38
39
40
41
from pathlib import Path
from setuptools import setup
# fmt: off
REQUIREMENTS = [
"attrs",
"click>=7,<8",
"colorama",
]
# fmt: on
CWD = Path(__file__).resolve().parent
setup(
name="shamir-mnemonic",
version="0.2.1",
description="SLIP-39 Shamir Mnemonics",
long_description="\n".join(
(
(CWD / "README.md").read_text(),
(CWD / "CHANGELOG.rst").read_text(),
)
),
url="https://github.com/trezor/python-shamir-mnemonic",
author="Satoshi Labs",
packages=["shamir_mnemonic"],
python_requires=">=3.6",
install_requires=REQUIREMENTS,
package_data={"shamir_mnemonic": ["wordlist.txt"]},
entry_points={"console_scripts": ["shamir=shamir_mnemonic.cli:cli"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
],
)