Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Commit

Permalink
reorganize; add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
beaugunderson committed Jul 10, 2017
1 parent 6d2e271 commit b59c908
Show file tree
Hide file tree
Showing 22 changed files with 41 additions and 0 deletions.
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.
2 changes: 2 additions & 0 deletions oyente.py → oyente/oyente.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import shlex
import subprocess
import os
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added oyente/test_evm/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
39 changes: 39 additions & 0 deletions setup.py
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',
]
)

0 comments on commit b59c908

Please sign in to comment.