forked from sj26/awscli-keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 863 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
setup(
name='awscli-keyring',
version='0.1.2',
description='AWS command line credentials from OS X Keychain and other keyrings.',
long_description='AWS command line credentials from OS X Keychain and other keyrings.',
author='Samuel Cochran',
author_email='[email protected]',
url='https://github.com/sj26/awscli-keyring',
packages=find_packages(exclude=['tests*']),
install_requires=[
'awscli',
'keyring',
],
license="MIT",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)