Skip to content

Commit

Permalink
Merge pull request #6 from tintinweb/fix/pip_install
Browse files Browse the repository at this point in the history
fix #5 - pip install
  • Loading branch information
tintinweb authored Aug 19, 2018
2 parents cc94467 + 4e11fe0 commit 19936cf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

version="0.1.1"

setup(
name="ethereum-dasm",
version="0.2",
version=version,
packages=find_packages(),
author="tintinweb",
author_email="[email protected]",
Expand All @@ -18,13 +20,14 @@ def read(fname):
license="GPLv2",
keywords=["ethereum", "blockchain", "evm", "disassembler"],
url="https://github.com/tintinweb/ethereum-dasm",
download_url="https://github.com/tintinweb/ethereum-dasm/tarball/v0.1",
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.rst") if os.path.isfile("README.rst") else read("README.md"),
long_description=read("README.md") if os.path.isfile("README.md") else "",
long_description_type='text/markdown',
install_requires=["colorama",
"requests",
"tabulate"],
#package_data={},
extras_require={"mythril": ["mythril"], # for laser-ethereum
"abidecoder": ["ethereum-input-decoder", "pyetherchain"],},
)
)

0 comments on commit 19936cf

Please sign in to comment.