forked from Yelp/detect-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
from setuptools import find_packages
from setuptools import setup
from detect_secrets import VERSION
setup(
name='detect_secrets',
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=VERSION,
description='Tool for detecting secrets in the codebase',
long_description=(
'Check out detect-secrets on `GitHub <https://github.com/Yelp/detect-secrets>`_!'
),
license='Copyright Yelp, Inc. 2020',
author='Aaron Loo',
author_email='[email protected]',
url='https://github.com/Yelp/detect-secrets',
download_url='https://github.com/Yelp/detect-secrets/archive/{}.tar.gz'.format(VERSION),
keywords=['secret-management', 'pre-commit', 'security', 'entropy-checks'],
install_requires=[
'pyyaml',
'requests',
],
extras_require={
'word_list': [
'pyahocorasick',
],
},
entry_points={
'console_scripts': [
'detect-secrets = detect_secrets.main:main',
'detect-secrets-hook = detect_secrets.pre_commit_hook:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Utilities',
'Environment :: Console',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
],
)