1
1
[build-system ]
2
- requires = [" setuptools" ]
3
2
build-backend = " setuptools.build_meta"
3
+ requires = [" setuptools" ]
4
+
5
+ [options ]
6
+ zip_safe = false
4
7
5
8
[project ]
6
- name = ' social-auth-app-flask-sqlalchemy'
7
- dynamic = [" version" ]
8
- dependencies = [
9
- " six" ,
10
- " sqlalchemy" ,
11
- " social-auth-core>=1.0.0" ,
12
- " social-auth-app-flask>=1.0.0" ,
13
- " social-auth-storage-sqlalchemy>=1.0.1" ,
14
- ]
15
9
authors = [
16
10
{
name =
" Matias Aguirre" ,
email =
" [email protected] " },
17
- {
name =
" Lee Ji-ho" ,
email =
" [email protected] " },
11
+ {
name =
" Lee Ji-ho" ,
email =
" [email protected] " }
12
+ ]
13
+ classifiers = [
14
+ ' Development Status :: 4 - Beta' ,
15
+ ' Topic :: Internet' ,
16
+ ' License :: OSI Approved :: BSD License' ,
17
+ ' Intended Audience :: Developers' ,
18
+ ' Environment :: Web Environment' ,
19
+ ' Programming Language :: Python' ,
20
+ ' Programming Language :: Python :: 3.7' ,
21
+ ' Programming Language :: Python :: 3.8' ,
22
+ ' Programming Language :: Python :: 3.9' ,
23
+ ' Programming Language :: Python :: 3.10' ,
24
+ ' Programming Language :: Python :: 3.11' ,
25
+ ' Programming Language :: Python :: 3.12'
26
+ ]
27
+ dependencies = [
28
+ " six" ,
29
+ " sqlalchemy" ,
30
+ " social-auth-core>=1.0.0" ,
31
+ " social-auth-app-flask>=1.0.0" ,
32
+ " social-auth-storage-sqlalchemy>=1.0.1"
18
33
]
19
34
description = ' Python Social Authentication, SQLAlchemy Flask models integration.'
20
- license = { text = ' BSD ' }
35
+ dynamic = [ " version " ]
21
36
keywords = [" flask" , " sqlalchemy" , " social auth" ]
37
+ license = {text = ' BSD' }
38
+ name = ' social-auth-app-flask-sqlalchemy'
22
39
readme = " README.md"
23
- classifiers =[
24
- ' Development Status :: 4 - Beta' ,
25
- ' Topic :: Internet' ,
26
- ' License :: OSI Approved :: BSD License' ,
27
- ' Intended Audience :: Developers' ,
28
- ' Environment :: Web Environment' ,
29
- ' Programming Language :: Python' ,
30
- ' Programming Language :: Python :: 3.7' ,
31
- ' Programming Language :: Python :: 3.8' ,
32
- ' Programming Language :: Python :: 3.9' ,
33
- ' Programming Language :: Python :: 3.10' ,
34
- ' Programming Language :: Python :: 3.11' ,
35
- ' Programming Language :: Python :: 3.12'
36
- ]
37
40
requires-python = " >= 3.7"
38
41
39
42
[project .urls ]
40
- Repository = ' https://github.com/python-social-auth/social-app-flask-sqlalchemy'
43
+ Changelog = ' https://github.com/python-social-auth/social-app-flask-sqlalchemy/blob/master/CHANGELOG.md '
41
44
Documentation = ' http://python-social-auth.readthedocs.org'
42
45
Issues = ' https://github.com/python-social-auth/social-app-flask-sqlalchemy/issues'
43
- Changelog = ' https://github.com/python-social-auth/social-app-flask-sqlalchemy/blob/master/CHANGELOG.md '
46
+ Repository = ' https://github.com/python-social-auth/social-app-flask-sqlalchemy'
44
47
45
- [options ]
46
- zip_safe = false
48
+ [tool .flake8 ]
49
+ # Ignore some well known paths
50
+ exclude = [' .venv' , ' .tox' , ' dist' , ' doc' , ' build' , ' *.egg' , ' db/env.py' , ' db/versions/*.py' , ' site' , ' Pipfile' , ' Pipfile.lock' ]
51
+ max-line-length = 79
47
52
48
53
[tool .setuptools ]
49
54
include-package-data = true
50
55
51
- [tool .setuptools .packages ]
52
- find = {}
53
-
54
56
[tool .setuptools .dynamic ]
55
57
version = {attr = " social_flask_sqlalchemy.__version__" }
56
58
57
- [tool .flake8 ]
58
- max-line-length = 79
59
- # Ignore some well known paths
60
- exclude = [' .venv' ,' .tox' ,' dist' ,' doc' ,' build' ,' *.egg' ,' db/env.py' ,' db/versions/*.py' ,' site' ,' Pipfile' ,' Pipfile.lock' ]
59
+ [tool .setuptools .packages ]
60
+ find = {}
0 commit comments