Skip to content

Commit c541bce

Browse files
committed
chore: use pyproject.toml
1 parent 03f3c07 commit c541bce

File tree

4 files changed

+47
-60
lines changed

4 files changed

+47
-60
lines changed

pyproject.toml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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-django >= 1.0.0",
20+
"social-auth-storage-mongoengine >= 1.0.0",
21+
"django-mongoengine>= 0.3.3"
22+
]
23+
description = "Python Social Authentication, Mongoengine Django integration."
24+
dynamic = ["version"]
25+
keywords = [
26+
"django",
27+
"social",
28+
"auth",
29+
"mongoengine"
30+
]
31+
name = "social-auth-app-django-mongoengine"
32+
license-files = ["LICENSE"]
33+
name = "social-auth-storage-peewee"
34+
readme = "README.md"
35+
36+
[project.urls]
37+
Homepage = "https://github.com/python-social-auth/social-app-django-mongoengine"
38+
39+
[tool.setuptools]
40+
include-package-data = false
41+
packages = [
42+
"social_django_mongoengine"
43+
]
44+
zip-safe = false
45+
46+
[tool.setuptools.dynamic]
47+
version = {attr = "social_peewee.__version__"}

requirements.txt

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

setup.cfg

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

setup.py

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

0 commit comments

Comments
 (0)