forked from druids/django-auth-token
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (38 loc) · 1.24 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
from setuptools import setup, find_packages
from auth_token.version import get_version
setup(
name='skip-django-auth-token',
version=get_version(),
description="Django authorization via tokens.",
keywords='django, authorization',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/skip-pay/django-auth-token',
license='BSD',
package_dir={'auth_token': 'auth_token'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django>=4.2.0',
'django-ipware>=3.0.2',
'import_string==0.1.0',
'skip-django-chamber>=0.7.2',
'skip-django-generic-m2m-field>=0.1.0',
'skip-django-choice-enumfields>=1.1.3.2',
'skip-django-security-logger>=1.7.0',
'tqdm>=4.62.3',
],
extras_require={
'mssso': ['requests>=2.26.0', 'msal>=1.20.0', 'python3-saml>=1.16.0'],
},
zip_safe=False
)