Skip to content

Commit b761fe0

Browse files
committed
chore: apply pre-commit fixes
Automated update of shared files from the social-core repository, see https://github.com/python-social-auth/.github/blob/main/repo-sync.py
1 parent b14b312 commit b761fe0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pyproject.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,33 @@ requires = ["setuptools"]
44

55
[project]
66
authors = [
7-
{name = "Matias Aguirre", email = "[email protected]"},
8-
{name = "Lee Ji-ho", email = "[email protected]"}
7+
{email = "[email protected]", name = "Matias Aguirre"},
8+
{email = "[email protected]", name = "Lee Ji-ho"}
99
]
1010
classifiers = [
1111
'Development Status :: 4 - Beta',
12-
'Topic :: Internet',
13-
'License :: OSI Approved :: BSD License',
14-
'Intended Audience :: Developers',
1512
'Environment :: Web Environment',
16-
'Programming Language :: Python',
13+
'Intended Audience :: Developers',
14+
'License :: OSI Approved :: BSD License',
15+
'Programming Language :: Python :: 3.10',
16+
'Programming Language :: Python :: 3.11',
17+
'Programming Language :: Python :: 3.12',
1718
'Programming Language :: Python :: 3.7',
1819
'Programming Language :: Python :: 3.8',
1920
'Programming Language :: Python :: 3.9',
20-
'Programming Language :: Python :: 3.10',
21-
'Programming Language :: Python :: 3.11',
22-
'Programming Language :: Python :: 3.12'
21+
'Programming Language :: Python',
22+
'Topic :: Internet'
2323
]
2424
dependencies = [
2525
"six",
26-
"sqlalchemy",
27-
"social-auth-core>=1.0.0",
2826
"social-auth-app-flask>=1.0.0",
29-
"social-auth-storage-sqlalchemy>=1.0.1"
27+
"social-auth-core>=1.0.0",
28+
"social-auth-storage-sqlalchemy>=1.0.1",
29+
"sqlalchemy"
3030
]
3131
description = 'Python Social Authentication, SQLAlchemy Flask models integration.'
3232
dynamic = ["version"]
33-
keywords = ["flask", "sqlalchemy", "social auth"]
33+
keywords = ["flask", "social auth", "sqlalchemy"]
3434
license = {text = 'BSD'}
3535
name = 'social-auth-app-flask-sqlalchemy'
3636
readme = "README.md"
@@ -44,7 +44,7 @@ Repository = 'https://github.com/python-social-auth/social-app-flask-sqlalchemy'
4444

4545
[tool.flake8]
4646
# Ignore some well known paths
47-
exclude = ['.venv', '.tox', 'dist', 'doc', 'build', '*.egg', 'db/env.py', 'db/versions/*.py', 'site', 'Pipfile', 'Pipfile.lock']
47+
exclude = ['*.egg', '.tox', '.venv', 'build', 'db/env.py', 'db/versions/*.py', 'dist', 'doc', 'Pipfile', 'Pipfile.lock', 'site']
4848
max-line-length = 79
4949

5050
[tool.setuptools]

0 commit comments

Comments
 (0)