forked from Yelp/detect-secrets-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.53 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
47
48
49
50
51
52
from setuptools import find_packages
from setuptools import setup
import detect_secrets_server
setup(
name='detect_secrets_server',
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=detect_secrets_server.__version__,
description='Tool for setting up a detect-secrets server',
long_description=(
'Check out detect-secrets-server on '
'`GitHub <https://github.com/Yelp/detect-secrets-server>`_!'
),
license="Copyright Yelp, Inc. 2018",
author='Aaron Loo',
author_email='aaronloo@yelp.com',
url='https://github.com/Yelp/detect-secrets-server',
download_url='https://github.com/Yelp/detect-secrets-server/archive/{}.tar.gz'.format(detect_secrets_server.__version__),
keywords=[
'secret-management',
'pre-commit',
'security',
'entropy-checks'
],
install_requires=[
'detect-secrets==0.13.1',
'pyyaml',
'unidiff',
],
extras_require={
'cron': [
'python-crontab',
],
},
entry_points={
'console_scripts': [
'detect-secrets-server = detect_secrets_server.__main__: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",
]
)