forked from Keeper-Security/Commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (56 loc) · 2 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
63
64
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
read_md = lambda f: open(f, 'r').read()
from os import path
import keepercommander
LICENSE = open("LICENSE").read()
# strip links from the descripton on the PyPI
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
'colorama',
'pycryptodomex',
'requests',
'tabulate',
'click',
]
setup(name='keepercommander',
version=keepercommander.__version__,
description='Keeper Commander for Python 3',
long_description=read_md('README.md'),
author='Craig Lurey',
author_email='craig@keepersecurity.com',
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.4",
"Topic :: Security"],
keywords='security password',
packages=['keepercommander',
'keepercommander.plugins.adpasswd',
'keepercommander.plugins.awskey',
'keepercommander.plugins.mssql',
'keepercommander.plugins.mysql',
'keepercommander.plugins.oracle',
'keepercommander.plugins.postgresql',
'keepercommander.plugins.ssh',
'keepercommander.plugins.sshkey',
'keepercommander.plugins.unixpasswd',
'keepercommander.plugins.windows',
'keepercommander.plugins.pspasswd',
'keepercommander.yubikey',
],
entry_points={
"console_scripts": [
"keeper=keepercommander:main",
],
},
install_requires=install_requires
)