-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 773 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 773 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
# SPDX-License-Identifier: Apache-2.0
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name="starcoin-sdk-python",
version="1.4.1",
description="The Python Client SDK for Starcoin",
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache-2.0",
url="https://github.com/fikgol/starcoin-sdk-python",
python_requires=">=3.7",
packages=find_packages('.'),
package_dir={"": "./"},
include_package_data=True, # see MANIFEST.in
zip_safe=True,
install_requires=["requests>=2.20.0", "cryptography>=2.8", "numpy>=1.18"],
)