-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 821 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 821 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="tinyman-py-sdk",
description="Tinyman Python SDK",
author="Tinyman",
author_email="hello@tinyman.org",
version="2.1.2",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
project_urls={
"Source": "https://github.com/tinyman/tinyman-py-sdk",
},
install_requires=["py-algorand-sdk >= 1.10.0", "requests >= 2.0.0"],
packages=setuptools.find_packages(),
python_requires=">=3.8",
package_data={
"tinyman.v1": ["asc.json"],
"tinyman.v2": ["amm_approval.map.json", "swap_router_approval.map.json"],
"tinyman.liquid_staking": ["structs.json"],
},
include_package_data=True,
)