-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.04 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
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-allauth-vatsim"
version = "0.0.3"
dependencies = [
"django-allauth>=0.62.0",
]
requires-python = ">=3.10"
authors = [
{name="Robin Kipp", email="[email protected]"},
]
description = "OAuth2 login provider for VATSIM using django-allauth."
readme = "README.md"
keywords = [
"vatsim",
"vatsim-oauth",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Topic :: Internet",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 5.0",
]
[project.urls]
Homepage = "https://github.com/robin24/django-allauth-vatsim"
Issues = "https://github.com/robin24/django-allauth-vatsim/issues"