-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.65 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
import os
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
# The directory containing this file
HERE = here = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
README = ""
with open(os.path.join(HERE, "README.md")) as f:
README = f.read()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
"Environment :: Win32 (MS Windows)",
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved :: Apache Software License',
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
setup(
name='aws-cp-saml',
version='0.0.5',
author='Robert Hutto',
author_email='[email protected]',
url='https://github.com/roberthutto/aws-cp-saml',
description='AWS SAML Credentials Process CLI that uses Windows SSO (Integrated Windows Authentication)',
long_description=README,
long_description_content_type="text/markdown",
license='Apache 2',
packages=find_packages(),
entry_points={
'console_scripts': [
'awscp=awscpsaml.awscp:main'
]
},
platforms="Windows",
classifiers=CLASSIFIERS,
keywords='SAML SSO IWA AWS credentials ntlm kerberos windows',
install_requires=requirements,
zip_safe=False
)