-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 1.25 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
from distutils.core import setup
setup(
name='aws-google-saml',
packages=['aws_google_saml'],
version='0.0.0',
license='MIT',
description='A user-browser driven SAML authentication tool for AWS',
author='bengieeee',
url='https://github.com/bengieeee/aws-google-saml',
download_url='https://github.com/bengieeee/aws-google-saml/archive/refs/tags/0.7.1.tar.gz',
# Keywords that define your package best
keywords=['aws', 'aws-cli', 'saml', 'google', 'google-saml', 'google-saml-aws'],
install_requires=[
'botocore',
'boto3'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'aws-google-saml=aws_google_saml.__main__:main',
],
},
package_data={
'aws_google_saml': ['authed.html'],
}
)