-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 944 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 944 Bytes
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
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="pactus-sdk",
version="1.4.0",
author="Pactus Development Team",
author_email="info@pactus.org",
description="Pactus Development Kit",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/pactus-project/python-sdk",
packages=find_packages(),
license="MIT",
install_requires=[
"pactus-grpc>=1.7.4",
"pactus-jsonrpc>=1.7.4",
"ripemd-hash",
"grpcio",
"grpcio-tools",
"cryptography>=43.0",
"zmq",
],
keywords=["pactus", "blockchain", "sdk", "web3", "dapp", "bls", "bech32"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)