forked from Keeper-Security/Commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (56 loc) · 1.68 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
56
57
58
59
60
61
62
from setuptools import setup, find_packages
from os import path
import keepercommander
here = path.abspath(path.dirname(__file__))
# Get the long description from the README.md file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
'wheel',
'asciitree',
'colorama',
'cryptography>=3.4.8',
'bcrypt',
'pykeepass',
'prompt_toolkit',
'protobuf>=3.18.0',
'pycryptodomex>=3.7.2',
'pyperclip',
'pysocks',
'requests',
'tabulate',
'keeper-secrets-manager-core>=16.2.0'
]
adpasswd_requires = ['ldap3']
test_requires = ['pytest', 'testfixtures']
setup(
name='keepercommander',
version=keepercommander.__version__,
description='Keeper Commander for Python 3',
long_description=long_description,
long_description_content_type="text/markdown",
author='Craig Lurey',
author_email='[email protected]',
url='https://github.com/Keeper-Security/Commander',
license='MIT',
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Security"],
keywords='security password',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
entry_points={
"console_scripts": [
"keeper=keepercommander.__main__:main",
],
},
install_requires=install_requires,
extras_require={
'adpasswd': adpasswd_requires,
'test': test_requires,
'all': adpasswd_requires + test_requires
}
)