Skip to content

Commit 1ef1da2

Browse files
fix: upgrade dependencies
1 parent fb478af commit 1ef1da2

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[project]
2+
name = "django-async-include"
3+
version = "0.7.0"
4+
authors = [
5+
{ name="Diego J. Romero López", email="[email protected]" },
6+
]
7+
description = "A simple application for Django to include (and fetch) asynchronous templates"
8+
readme = "README.md"
9+
requires-python = ">=3.7"
10+
classifiers = [
11+
"Programming Language :: Python :: Implementation :: CPython",
12+
"Programming Language :: Python :: Implementation :: PyPy",
13+
"Programming Language :: Python :: 3.7",
14+
"Programming Language :: Python :: 3.8",
15+
"Programming Language :: Python :: 3.9",
16+
"Programming Language :: Python :: 3.10",
17+
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
20+
"Topic :: Software Development :: Libraries",
21+
"Development Status :: 5 - Production/Stable",
22+
"License :: OSI Approved :: MIT License",
23+
]
24+
license = { text = "MIT" }
25+
dependencies = [
26+
"Django>=1.11.4",
27+
"jsonpickle>=2.0.0",
28+
"pycryptodome>=3.10.1"
29+
]
30+
31+
[project.urls]
32+
Homepage = "https://github.com/diegojromerolopez/django-async-include"
33+
Issues = "https://github.com/diegojromerolopez/django-async-include/issues"
34+
35+
[build-system]
36+
requires = ["setuptools>=61.0"]
37+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)