-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 567 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 567 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="1.0.2",
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.enums",
"etherscan.modules",
"etherscan.utils",
"configs",
],
install_requires=["requests", "coverage"],
package_data={"configs": ["*"]},
zip_safe=False,
)