diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00f01a5..5d5eeda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2 + - uses: astral-sh/setup-uv@c7f87aa956e4c323abf06d5dec078e358f6b4d04 # v6.0.0 - run: uv build diff --git a/pyproject.toml b/pyproject.toml index d0eb137..a0d11db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,22 +4,22 @@ requires = ["setuptools"] [project] authors = [ - {name = "Matias Aguirre", email = "matiasaguirre@gmail.com"}, - {name = "Lee Ji-ho", email = "search5@gmail.com"} + {email = "matiasaguirre@gmail.com", name = "Matias Aguirre"}, + {email = "search5@gmail.com", name = "Lee Ji-ho"} ] classifiers = [ 'Development Status :: 4 - Beta', - 'Topic :: Internet', - 'License :: OSI Approved :: BSD License', - 'Intended Audience :: Developers', 'Environment :: Web Environment', - 'Programming Language :: Python', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11', - 'Programming Language :: Python :: 3.12' + 'Programming Language :: Python', + 'Topic :: Internet' ] dependencies = [ "six", @@ -28,7 +28,7 @@ dependencies = [ ] description = 'Python Social Authentication, web.py integration.' dynamic = ["version"] -keywords = ["web.py", "sqlalchemy", "social auth"] +keywords = ["social auth", "sqlalchemy", "web.py"] license = {text = 'BSD'} name = 'social-auth-app-webpy' readme = "README.md" @@ -42,7 +42,7 @@ Repository = 'https://github.com/python-social-auth/social-app-webpy' [tool.flake8] # Ignore some well known paths -exclude = ['.venv', '.tox', 'dist', 'doc', 'build', '*.egg', 'db/env.py', 'db/versions/*.py', 'site', 'Pipfile', 'Pipfile.lock'] +exclude = ['*.egg', '.tox', '.venv', 'build', 'db/env.py', 'db/versions/*.py', 'dist', 'doc', 'Pipfile', 'Pipfile.lock', 'site'] max-line-length = 79 [tool.setuptools]