-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
30 lines (29 loc) · 1023 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-safety',
description='A pre-commit hook to check your Python dependencies against safety-db',
url='https://github.com/Lucas-C/pre-commit-hooks-safety',
version='1.3.3',
author='Lucas Cimon',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('.'),
install_requires=[
'safety',
],
entry_points={
'console_scripts': [
'safety_check = pre_commit_hooks.safety_check:main',
],
},
)