forked from lepture/authlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (28 loc) · 906 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from authlib.consts import version, homepage
client_requires = ['requests']
crypto_requires = ['cryptography>=3.2,<4']
setup(
name='Authlib',
version=version,
url=homepage,
packages=find_packages(include=('authlib', 'authlib.*')),
zip_safe=False,
include_package_data=True,
platforms='any',
license='BSD-3-Clause',
install_requires=crypto_requires,
extras_require={
'client': client_requires,
},
project_urls={
'Documentation': 'https://docs.authlib.org/',
'Commercial License': 'https://authlib.org/plans',
'Bug Tracker': 'https://github.com/lepture/authlib/issues',
'Source Code': 'https://github.com/lepture/authlib',
'Blog': 'https://blog.authlib.org/',
'Donate': 'https://lepture.com/donate',
},
)