forked from goodnewsj62/django-dynamic-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
24 lines (23 loc) · 808 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-dynamic-host"
authors = [
{name = "John Goodnews Osonwa", email = "[email protected]"},
]
description = "Django dynamic host helps you validate hostname(origin of client) trying to reach your application dynamically. Django dynamic host helps by-pass the ALLOWED_HOST settings which is restricted to a constant manually added value of hostnames."
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python :: 3",
]
version = "0.0.2"
dependencies = [
"Django>=3.2",
'importlib-metadata; python_version>="3.7"',
]