-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
35 lines (31 loc) · 884 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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
# coding: utf8
import os
from setuptools import setup, find_packages
config = {
"description": "Flask Azure Active Directory Auth",
"author": "Matthias Wutte",
"author_email": "[email protected]",
"url": "https://github.com/wuttem/flask-ad-auth",
"license": "MIT",
"classifiers": [
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration :: Authentication/Directory",
],
"version": "1.1.3",
'install_requires': [
"flask",
"werkzeug",
"flask-login",
"requests",
"msal"
],
'tests_require': ["pytest", "mock"],
"packages": find_packages(),
"scripts": [],
"name": "flask-ad-auth",
}
setup(**config)