-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (39 loc) · 1.12 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
35
36
37
38
39
40
from setuptools import find_packages, setup
setup(
name='oyente',
version='0.2.7',
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',
'z3-solver'
]
)