-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.cfg
53 lines (50 loc) · 1.32 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
[metadata]
name = keepercommander
version = attr: keepercommander.__init__.__version__
description = Keeper Commander for Python 3
long_description = file: README.md
long_description_content_type = text/markdown
author = Craig Lurey
author_email = [email protected]
url = https://keepersecurity.com/
source_url = https://github.com/Keeper-Security/Commander
download_url = https://github.com/Keeper-Security/Commander/releases
license = MIT
classifiers =
Environment :: Console
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Topic :: Security
keywords = security, password
[options]
python_requires = >=3.6
packages = find:
include_package_data = True
install_requires =
asciitree
bcrypt
colorama
cryptography>=38.0.3
fido2
keeper-secrets-manager-core>=16.2.0
prompt_toolkit
protobuf>=3.18.0
pycryptodomex>=3.7.2
pyperclip
pysocks
requests; python_version<'3.7'
requests>=2.30.0; python_version>='3.7'
setuptools
tabulate
websockets
aiortc; python_version>='3.8'
[options.extras_require]
test =
pytest
testfixtures
[options.entry_points]
console_scripts =
keeper = keepercommander.__main__:main