Skip to content

Commit a59402a

Browse files
committed
chore: use pyproject.toml
1 parent 25a1c8a commit a59402a

File tree

4 files changed

+46
-52
lines changed

4 files changed

+46
-52
lines changed

pyproject.toml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
[build-system]
2+
build-backend = "setuptools.build_meta"
3+
requires = ["setuptools>=78.0.2"]
4+
5+
[project]
6+
authors = [
7+
{name = "Matias Aguirre", email = "[email protected]"}
8+
]
9+
classifiers = [
10+
"Development Status :: 4 - Beta",
11+
"Topic :: Internet",
12+
"Intended Audience :: Developers",
13+
"Environment :: Web Environment",
14+
"Programming Language :: Python",
15+
"Programming Language :: Python :: 2.7",
16+
"Programming Language :: Python :: 3"
17+
]
18+
dependencies = [
19+
"social-auth-app-flask >= 1.0.0",
20+
"social-auth-storage-peewee >= 1.0.0"
21+
]
22+
description = "Python Social Authentication, peewee Flask models integration."
23+
dynamic = ["version"]
24+
keywords = [
25+
"flask",
26+
"peewee",
27+
"social",
28+
"auth"
29+
]
30+
license = "BSD-3-Clause"
31+
license-files = ["LICENSE"]
32+
name = "social-auth-app-flask-peewee"
33+
readme = "README.md"
34+
35+
[project.urls]
36+
Homepage = "https://github.com/python-social-auth/social-app-flask-peewee"
37+
38+
[tool.setuptools]
39+
include-package-data = false
40+
packages = [
41+
"social_flask_peewee"
42+
]
43+
zip-safe = false
44+
45+
[tool.setuptools.dynamic]
46+
version = {attr = "social_peewee.__version__"}

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)