-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.33 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'dsw-mailer'
version = "4.15.0"
description = 'Worker for sending email notifications'
readme = 'README.md'
keywords = ['email', 'jinja2', 'notification', 'template']
license = { text = 'Apache License 2.0' }
authors = [
{ name = 'Marek Suchánek', email = 'marek.suchanek@ds-wizard.org' }
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications :: Email',
'Topic :: Text Processing',
]
requires-python = '>=3.11, <4'
dependencies = [
'boto3',
'click',
'dkimpy',
'Jinja2',
'Markdown',
'pathvalidate',
'python-dateutil',
'sentry-sdk',
'tenacity',
# DSW
"dsw-command-queue==4.15.0",
"dsw-config==4.15.0",
"dsw-database==4.15.0",
]
[project.urls]
Homepage = 'https://ds-wizard.org'
Repository = 'https://github.com/ds-wizard/engine-tools'
Documentation = 'https://guide.ds-wizard.org'
[project.scripts]
dsw-mailer = 'dsw.mailer:main'
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ['dsw*']
[tool.distutils.bdist_wheel]
universal = true