forked from piontas/python-aada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.38 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
#!/usr/bin/env python
from setuptools import find_packages, setup
dependencies = [
'awscli', 'botocore', 'boto3', 'requests', 'websockets~=6.0',
'pyppeteer==0.0.25'
]
setup(
name='aada',
version='0.1.7',
url='https://github.com/piontas/python-aada',
license='MIT',
author='Marek Piatek',
author_email='[email protected]',
description='Generates STS Tokens based on SAML Assertion from Azure AD',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=dependencies,
extras_require = {
'keyring': ['keyring~=18.0.0']
},
entry_points={
'console_scripts': [
'aada = aada.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)