-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
55 lines (45 loc) · 1.41 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import find_packages, setup
requires = [
'awscli>=1.16.10,<2.0.0',
'boto3>=1.9.0,<2.0.0',
'halo',
'inquirer>=2.6.0,<3.0.0',
'keyring>=19.0.0,<20.0.0',
'requests',
'secretstorage; platform_system == "Linux"',
'selenium>=3.14.0,<4.0.0',
]
with open('README.md', 'r') as fh:
long_description = fh.read()
setup_options = dict(
name='awssso',
use_scm_version=True,
description='Command Line tool for AWS SSO Credentials',
long_description=long_description,
long_description_content_type='text/markdown',
author='wnkz',
author_email='[email protected]',
url='http://github.com/wnkz/aws-sso',
entry_points={
'console_scripts': [
'awssso=awssso.cli:main'
],
},
packages=find_packages(exclude=['tests*']),
install_requires=requires,
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7'
],
keywords=['aws', 'sso', 'cloud', 'cli', 'credentials']
)
setup(**setup_options)