forked from tintinweb/ethereum-input-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 999 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ethereum_input_decoder",
version="0.2.2",
packages=["ethereum_input_decoder"],
author="tintinweb",
author_email="[email protected]",
description=(
"Decode transaction inputs based on the contract ABI"),
license="GPLv3",
keywords=["ethereum", "blockchain", "input", "transaction", "decoder"],
url="https://github.com/tintinweb/ethereum-input-decoder/",
download_url="https://github.com/tintinweb/ethereum-input-decoder/tarball/v0.2.2",
#python setup.py register -r https://testpypi.python.org/pypi
long_description=read("README.rst") if os.path.isfile("README.rst") else read("README.md"),
install_requires=["eth-abi", "requests"],
package_data={
'ethereum_input_decoder': ['ethereum_input_decoder'],
},
)