forked from Nike-Inc/gimme-aws-creds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 804 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
from setuptools import setup, find_packages
import gimme_aws_creds
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='gimme aws creds',
version=gimme_aws_creds.version,
install_requires=requirements,
author='Ann Wallace',
description="A CLI to get temporary AWS credentials from Okta",
url='https://github.com/Nike-Inc/gimme-aws-creds',
license='Apache License, v2.0',
packages=find_packages(exclude=('tests', 'docs')),
test_suite="tests",
scripts=['bin/gimme-aws-creds', 'bin/gimme-aws-creds.cmd'],
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: Apache Software License'
]
)