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