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.
- Loading branch information
1 parent
6d2e271
commit b59c908
Showing
22 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
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 | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
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 |
---|---|---|
@@ -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', | ||
] | ||
) |