-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (52 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# This pyproject.toml seems to work to build a new package
# when `setuptools==67.6.1` is installed.
[project]
name = "djaodjin-extended-templates"
dynamic = ["version"]
description = "DjaoDjin's Template wrappers for HTML email and PDF templates"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
keywords = ["django", "templates", "email", "pdf"]
authors = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
maintainers = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
classifiers = [
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"beautifulsoup4>=4.3.2",
"boto3>=1.17.21",
"Django>=1.11",
"djangorestframework>=3.3.1",
"django-assets>=0.12",
"django-storages>=1.14",
"djaodjin-deployutils>=0.10.5",
"Jinja2>=2.8",
"Markdown>=2.4.1",
"premailer>=2.9.2",
"requests>=2.22.0",
"WeasyPrint>=0.42"
]
[project.urls]
repository = "https://github.com/djaodjin/djaodjin-extended-templates"
documentation = "https://djaodjin-extended-templates.readthedocs.io/"
changelog = "https://github.com/djaodjin/djaodjin-extended-templates/changelog"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["extended_templates*"]
[tool.setuptools.package-data]
extended_templates = [
'static/js/*.js',
'templates/extended_templates/*.html'
]
[tool.setuptools.dynamic]
version = {attr = "extended_templates.__version__"}