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