-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathsetup.py
36 lines (34 loc) · 1.21 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
from setuptools import setup, find_packages
from slitherin.cli import SLITHERIN_VERSION
with open("./README.md", "r") as f:
long_description = f.read()
setup(
name="slitherin",
description="Pessimistic security Slither detectors",
long_description=long_description,
long_description_content_type="text/markdown",
package_data={"slitherin": ["py.typed"]},
url="https://github.com/pessimistic-io/slitherin",
author="Pessimistic.io",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
version=SLITHERIN_VERSION,
packages=find_packages(),
license="AGPL-3.0",
python_requires=">=3.8",
install_requires=["slither-analyzer>=0.10.0"],
extras_requires={
"dev": ["twine>=4.0.2"],
},
entry_points={
"slither_analyzer.plugin": "slither slitherin-plugins=slitherin:make_plugin",
"console_scripts": ["slitherin=slitherin.cli:main"],
"napalm.collection": ["slitherin=slitherin.napalm:entry_point"],
},
include_package_data=True,
)