forked from Lucas-C/pre-commit-hooks-bandit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 858 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
setup(
name='pre-commit-hooks-bandit',
description='A pre-commit hook to find common security issues in your Python code',
url='https://github.com/Lucas-C/pre-commit-hooks-bandit',
version='1.0.4',
author='Lucas Cimon',
author_email='[email protected]',
platforms='linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('.'),
install_requires=[
'bandit',
],
entry_points={
'console_scripts': [
'bandit_analyzer = pre_commit_hooks.bandit_analyzer:main',
],
},
)