-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.48 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
from os import path
from setuptools import setup
def read(file_name: str) -> str:
"""Helper to read README."""
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, file_name), encoding="utf-8") as f:
return f.read()
setup(
name="hdacpy",
version="0.5.5", # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
author="psy2848048",
author_email="[email protected]",
description="Tools for Hdac wallet management and offline transaction signing",
url="https://github.com/psy2848048/hdacpy",
project_urls={"Changelog": "https://github.com/psy2848048/hdacpy/blob/master/CHANGELOG.md"},
packages=["hdacpy"],
package_data={"hadcpy": ["py.typed"]},
zip_safe=False, # For mypy to be able to find the installed package
install_requires=[
"ecdsa>=0.14.0,<0.15.0",
"bech32>=1.1.0,<2.0.0",
"typing-extensions>=3.7.4,<4.0.0; python_version<'3.8'",
"mnemonic==0.19",
"bip32utils",
],
python_requires=">=3.6",
keywords="hdac blockchain cryptocurrency python sdk",
classifiers=[
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)