-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.08 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
39
40
41
42
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "django-production"
readme = "README.md"
authors = [{name = "Peter Baumgartner", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Framework :: Django",
]
dynamic = ["version", "description"]
dependencies = [
"django-environ",
"whitenoise",
"django-webserver[gunicorn]",
"django-alive",
]
keywords = ["django", "production", "deployment"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"urllib3",
]
[project.scripts]
django-production-apply = "django_production.__main__:do_patch"
[project.urls]
Home = "https://github.com/lincolnloop/django-production"
Issues = "https://github.com/lincolnloop/django-production/issues"
Changelog = "https://github.com/lincolnloop/django-production/blob/main/CHANGELOG.md"
[tool.flit.module]
name = "django_production"