-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 586 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="polygonscan-python",
version="1.0.2",
description="A minimal, complete, python API for polygonscan.com.",
url="https://github.com/tarsil/polygonscan-python",
author="Tiago A. Silva",
license="MIT",
packages=[
"polygonscan",
"polygonscan.configs",
"polygonscan.core",
"polygonscan.enums",
"polygonscan.modules",
"polygonscan.utils",
],
python_requires='>=3.8',
install_requires=["aiohttp", "requests"],
include_package_data=True,
zip_safe=False,
)