forked from fugue/credstash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 731 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='credstash',
version='1.4',
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',
],
install_requires=['boto>=2.38.0', 'pycrypto>=2.6.1'],
extras_require = {'YAML': ['PyYAML>=3.10']},
scripts=['credstash.py'],
py_modules=['credstash'],
entry_points={
'console_scripts': [
'credstash = credstash:main'
]
}
)