-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (32 loc) · 1.16 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
#setup.py
""" SwanSDK setup code """
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="swan-sdk",
version="0.0.8",
packages=['swan', 'swan.api', 'swan.common', 'swan.contract', 'swan.object', 'swan.contract.abi'],
# package_data={'swan.contract.abi': ['swan/contract/abi/PaymentContract.json', 'swan/contract/abi/SwanToken.json']},
include_package_data=True,
description="A python developer tool kit for Swan services.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/swanchain/python-swan-sdk",
author="SwanCloud",
author_email="swan.development@nbai.io",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
install_requires=[
"requests==2.28.1",
"web3==6.20.3",
"requests-toolbelt==1.0.0",
"tqdm==4.66.5",
],
entry_points={
# placeholder
},
)