forked from fugue/credstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 746 Bytes
/
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
from setuptools import setup
setup(
name='credstash',
version='1.14.0',
description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB',
license='Apache2',
url='https://github.com/LuminalOSS/credstash',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
],
scripts=['credstash.py'],
py_modules=['credstash'],
install_requires=[
'cryptography>=1.5, <2.1',
'boto3>=1.1.1',
],
extras_require={
'YAML': ['PyYAML>=3.10']
},
entry_points={
'console_scripts': [
'credstash = credstash:main'
]
}
)