-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.4 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dsd-render"
version = "0.1.0"
description = "A plugin for django-simple-deploy, supporting deployments to Render."
readme = "README.md"
authors = [
{name = "Eric Matthes", email = "ehmatthes@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["django", "deployment"]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
"pluggy>=1.5.0",
"toml>=0.10.2",
"requests>=2.32.2",
"django-simple-deploy>=0.9.0"
]
[project.optional-dependencies]
dev = [
"black>=24.1.0",
"build>=1.2.1",
"pytest>=8.3.0",
"twine>=5.1.1",
]
# [project.urls]
# "Documentation" = "<documentation URL>"
# "GitHub" = "<GH repo URL>"
# "Changelog" = "<changelog URL"
[tool.setuptools]
packages = [
"dsd_render",
"dsd_render.templates",
]
include-package-data = true