forked from GitGuardian/ggshield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (63 loc) · 1.74 KB
/
setup.cfg
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
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = ggshield
version = attr: ggshield.__version__
author = GitGuardian
author_email = [email protected]
maintainer = GitGuardian
license = MIT
description = Detect secrets from all sources using GitGuardian's brains
keywords =
cli
devsecops
secrets-detection
security-tools
gitguardian
url = https://github.com/GitGuardian/ggshield
long_description = file: README.md
long_description_content_type = text/markdown
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
Topic :: Security
[options]
python_requires = >=3.8
packages = find:
zip_safe = True
install_requires =
platformdirs>=3.0.0,<3.1.0
charset-normalizer>=3.1.0,<3.2.0
click>=8.1,<8.2
cryptography>=42.0.4,<43.0.0
marshmallow>=3.18.0,<3.19.0
marshmallow-dataclass>=8.5.8,<8.6.0
oauthlib>=3.2.1,<3.3.0
pygitguardian>=1.16.0,<1.17.0
pyjwt>=2.6.0,<2.7.0
python-dotenv>=0.21.0,<0.22.0
pyyaml>=6.0.1,<6.1
requests>=2.32.0,<2.33.0
urllib3>=2.2.2,<2.3.0
rich>=12.5.1,<12.6.0
include_package_data = True
[options.packages.find]
exclude =
tests
tests.*
[options.entry_points]
console_scripts = ggshield=ggshield.__main__:main
[flake8]
inline-quotes = double
max-line-length = 120
ignore = E203, E704, W503
exclude = **/snapshots/*.py, .venv, build