-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (42 loc) · 1.44 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
43
44
45
46
47
48
49
import codecs
from pathlib import Path
from setuptools import find_packages, setup
# Get the directory where this setup.py file is located
here = Path(__file__).resolve().parent
with codecs.open(here / "README.md", encoding="utf-8") as fh:
long_description = fh.read()
NAME = "pactus-sdk"
VERSION = "1.1.2"
AUTHOR = "Pactus Development Team"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Pactus Development Kit"
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown"
URL = "https://github.com/pactus-project/python-sdk"
# Package dependencies
REQUIRED = ["ripemd-hash", "grpcio", "grpcio-tools", "cryptography>=43.0"]
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
url=URL,
packages=find_packages(),
install_requires=REQUIRED,
keywords=["pactus", "blockchain", "web3", "dapp", "bls", "bech32"],
classifiers=CLASSIFIERS,
python_requires=">=3.6",
)