forked from diem/client-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.01 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
# Copyright (c) The Diem Core Contributors
# SPDX-License-Identifier: Apache-2.0
import os
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="diem",
version="1.1.1",
description="The Python Client SDK for Diem",
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache-2.0",
url="https://github.com/diem/client-sdk-python",
# author="Diem Open Source",
python_requires=">=3.7", # requires dataclasses
packages=["diem"],
# package_data={"": ["src/diem/jsonrpc/*.pyi"]},
package_dir={"": "src"},
include_package_data=True, # see MANIFEST.in
zip_safe=True,
install_requires=["requests>=2.20.0", "cryptography>=2.8", "numpy>=1.18", "protobuf>=3.12.4"],
setup_requires=[
# Setuptools 18.0 properly handles Cython extensions.
"setuptools>=18.0",
]
)