forked from tintinweb/ethereum-dasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.22 KB
/
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
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
version="0.1.5"
setup(
name="ethereum-dasm",
version=version,
packages=find_packages(),
author="tintinweb",
author_email="tintinweb@oststrom.com",
description=(
"An ethereum bytecode disassembler with static and dynamic analysis features"),
license="GPLv2",
keywords=["ethereum", "blockchain", "evm", "disassembler", "decompiler", "pseudocode"],
url="https://github.com/tintinweb/ethereum-dasm",
download_url="https://github.com/tintinweb/ethereum-dasm/tarball/v%s"%version,
#python setup.py register -r https://testpypi.python.org/pypi
long_description=read("README.md") if os.path.isfile("README.md") else "",
long_description_content_type='text/markdown',
install_requires=["evmdasm",
"colorama",
"requests",
"tabulate"],
#package_data={},
extras_require={"mythril": ["mythril"], # for laser-ethereum
"abidecoder": ["ethereum-input-decoder", "pyetherchain"],},
)