forked from swanchain/python-swan-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.15 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
#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.5",
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 Orchestrator services.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/swanchain/python-swan-sdk",
author="SwanCloud",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
install_requires=[
"requests>=2.28.1",
"requests-toolbelt>=0.10.1",
"web3>=6.15.1"
],
entry_points={
# placeholder
},
)