forked from lyft/python-blessclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 638 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name="blessclient",
version="0.3.0",
packages=find_packages(exclude=["test*"]),
install_requires=[
'boto3>=1.4.0,<2.0.0',
'psutil>=4.3',
'kmsauth>=0.1.8',
'six',
'hvac'
],
author="Chris Steipp",
author_email="csteipp@lyft.com",
description="Issue temporary certificates for ssh, signed by the Netflix BLESS lambda.",
license="apache2",
url="https://github.com/lyft/python-blessclient",
entry_points={
"console_scripts": [
"blessclient = blessclient.client:main"
],
},
)