mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
485 B
15 lines
485 B
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="slither-my-plugins",
|
|
description="This is an example of detectors and printers to Slither.",
|
|
url="https://github.com/trailofbits/slither-plugins",
|
|
author="Trail of Bits",
|
|
version="0.0",
|
|
packages=find_packages(),
|
|
python_requires=">=3.8",
|
|
install_requires=["slither-analyzer==0.1"],
|
|
entry_points={
|
|
"slither_analyzer.plugin": "slither my-plugin=slither_my_plugin:make_plugin",
|
|
},
|
|
)
|
|
|