This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from beaugunderson/master
make oyente installable via setup.py
- Loading branch information
Showing
26 changed files
with
97 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
tmp/ | ||
tmp | ||
*.pyc | ||
contract_data | ||
*.sol | ||
*.disasm | ||
*.evm | ||
*.log | ||
*.disasm | ||
*.pyc | ||
*.report | ||
*.sol | ||
|
||
.DS_Store | ||
.idea/ | ||
|
||
.idea/dist/ | ||
|
||
contract_data | ||
dist/ | ||
tmp/ | ||
|
||
current_test.pickle | ||
|
||
bytecode | ||
bytecode.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env python | ||
|
||
import shlex | ||
import subprocess | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
EXCEPTION = 104 | ||
EMPTY_RESULT = 105 | ||
INCORRECT_GAS = 106 | ||
|
||
PICKLE_PATH = 'current_test.pickle' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='oyente', | ||
version='1.0.0', | ||
author='Loi Luu', | ||
# author_email='', | ||
url='https://github.com/melonport/oyente', | ||
description='An analysis tool for smart contracts', | ||
long_description=open('README.md').read(), | ||
license='GPL', | ||
keywords='ethereum smart contracts', | ||
classifiers=[ | ||
'Environment :: Console', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: POSIX', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Programming Language :: Python', | ||
'Topic :: Utilities', | ||
], | ||
packages=find_packages(), | ||
package_data={ | ||
'oyente': ['state.json'], | ||
}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'oyente = oyente.oyente:main', | ||
] | ||
}, | ||
install_requires=[ | ||
'requests', | ||
'web3', | ||
] | ||
) |