-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["flit_core == 3.9.*"]
build-backend = "flit_core.buildapi"
[project]
dynamic = ["version", "description"]
name = "Rest_Framework_Auth_Toolkit"
authors = [ { name = "Caravan Coop", email = "hi@caravan.coop" } ]
readme = "README.md"
requires-python = ">= 3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
]
dependencies = [
"django >= 4.2",
]
[project.optional-dependencies]
facebook = ["facepy"]
[project.urls]
Homepage = "https://github.com/caravancoop/rest-framework-auth-toolkit"
Changelog = "https://github.com/caravancoop/rest-framework-auth-toolkit/blob/main/CHANGELOG.md"
[tool.flit.module]
name = "rest_auth_toolkit"