forked from fugue/credstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (35 loc) · 919 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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
name = 'credstash'
version = '1.17.1'
setup(
name=name,
version=version,
description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB',
author="Alex Schoof, Mike Lin, et al.",
author_email="[email protected]",
license='Apache2',
url="https://github.com/fugue/credstash",
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
],
scripts=['credstash.py'],
py_modules=['credstash'],
install_requires=[
'cryptography>=2.1',
'boto3>=1.1.1',
],
extras_require={
'YAML': ['PyYAML>=3.10']
},
entry_points={
'console_scripts': [
'credstash = credstash:main'
]
},
setup_requires=[
'pytest>=5.4.1'
],
)