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