forked from GitGuardian/ggshield
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (46 loc) · 1.74 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
53
54
55
import io
import os
import re
from setuptools import find_packages, setup
VERSION_RE = re.compile(r"__version__\s*=\s*\"(.*?)\"")
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*args):
"""Reads complete file contents."""
return io.open(os.path.join(HERE, *args), encoding="utf-8").read()
def get_version():
"""Reads the version from this module."""
init = read("ggshield", "__init__.py")
return VERSION_RE.search(init).group(1)
setup(
name="ggshield",
version=get_version(),
packages=find_packages(exclude=["tests"]),
description="Detect secrets from all sources using GitGuardian's brains",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/GitGuardian/gg-shield",
author="GitGuardian",
author_email="[email protected]",
maintainer="GitGuardian",
entry_points={"console_scripts": ["ggshield=ggshield.cmd:cli"]},
install_requires=["requests", "click", "pyyaml", "pygitguardian"],
include_package_data=True,
zip_safe=True,
license="MIT",
keywords="cli devsecops secrets-detection security-tools gitguardian",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Security",
],
)