forked from davedittrich/python_secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
93 lines (87 loc) · 3.5 KB
/
setup.cfg
File metadata and controls
93 lines (87 loc) · 3.5 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[bumpversion]
current_version = 21.2.0
commit = False
tag = False
[bumpversion:file:VERSION]
[bumpversion:file:README.rst]
[bumpversion:file:psec/__init__.py]
[bdist_wheel]
universal = 1
[metadata]
name = python-secrets
description = Python CLI for decoupling secrets (passwords, API keys, etc.) from source code
description_file = README.rst
author = Dave Dittrich
author_email = [email protected]
download_url = https://github.com/davedittrich/python_secrets/tarball/master
url = https://github.com/davedittrich/python_secrets
python_requires = >=3.6
license = Apache Software License
keywords =
python_secrets
cliff
cli
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Information Technology
Intended Audience :: Other Audience
Intended Audience :: Science/Research
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Security
Topic :: Software Development
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Installation/Setup
Topic :: Utilities
[entry_points]
scripts =
bin/psec
console_scripts =
psec = psec.main:main
psec =
environments create = psec.environments.create:EnvironmentsCreate
environments default = psec.environments.default:EnvironmentsDefault
environments delete = psec.environments.delete:EnvironmentsDelete
environments list = psec.environments.list:EnvironmentsList
environments path = psec.environments.path:EnvironmentsPath
environments rename = psec.environments.rename:EnvironmentsRename
environments tree = psec.environments.tree:EnvironmentsTree
groups create = psec.groups.create:GroupsCreate
groups delete = psec.groups.delete:GroupsDelete
groups list = psec.groups.list:GroupsList
groups path = psec.groups.path:GroupsPath
groups show = psec.groups.show:GroupsShow
run = psec.run:Run
secrets backup = psec.secrets.backup:SecretsBackup
secrets create = psec.secrets.create:SecretsCreate
secrets delete = psec.secrets.delete:SecretsDelete
secrets describe = psec.secrets.describe:SecretsDescribe
secrets generate = psec.secrets.generate:SecretsGenerate
secrets get = psec.secrets.get:SecretsGet
secrets path = psec.secrets.path:SecretsPath
secrets restore = psec.secrets.restore:SecretsRestore
secrets send = psec.secrets.send:SecretsSend
secrets set = psec.secrets.set:SecretsSet
secrets show = psec.secrets.show:SecretsShow
ssh config = psec.ssh:SSHConfig
ssh known-hosts add = psec.ssh:SSHKnownHostsAdd
ssh known-hosts extract = psec.ssh:SSHKnownHostsExtract
ssh known-hosts remove = psec.ssh:SSHKnownHostsRemove
template = psec.template:Template
utils myip = psec.utils.myip:MyIP
utils myip methods = psec.utils.myip:MyIPMethods
utils netblock = psec.utils.netblock:Netblock
utils set-aws-credentials = psec.utils.set_aws_credentials:SetAWSCredentials
utils tfstate backend = psec.utils.tfbackend:TfBackend
utils tfstate output = psec.utils.tfoutput:TfOutput
utils yaml-to-json = psec.utils.yaml_to_json:YAMLToJSON