mirror of https://github.com/crytic/slither
parent
943b22cf95
commit
cfe8f89c39
@ -1 +0,0 @@ |
||||
prettytable |
@ -0,0 +1,19 @@ |
||||
from setuptools import setup, find_packages |
||||
|
||||
setup( |
||||
name='Slither', |
||||
description='Slither is a Solidity static analysis framework written in Python 3.', |
||||
url='https://github.com/trailofbits/slither', |
||||
author='Trail of Bits', |
||||
version='0.1', |
||||
packages=find_packages(), |
||||
python_requires='>=3.6', |
||||
install_requires=['prettytable>=0.7.2'], |
||||
license='AGPL-3.0', |
||||
long_description=open('README.md').read(), |
||||
entry_points={ |
||||
'console_scripts': [ |
||||
'slither = slither.__main__:main' |
||||
] |
||||
} |
||||
) |
@ -1 +1 @@ |
||||
from .slither import Slither |
||||
from .slither import Slither |
Loading…
Reference in new issue