-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
66 lines (61 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "django-azure-communication-email"
version = "1.3.0"
description = "A Django email backend for Azure Communication Email service."
authors = ["Dmitrii Azarenko <[email protected]>"]
maintainers = []
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/retech-us/django-azure-communication-email"
packages = [{include = "django_azure_communication_email"}]
keywords = ["django", "email", "azure"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Programming Language :: Python :: 3.8',
'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',
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/retech-us/django-azure-communication-email/issues"
"Company Website" = "https://retechlabs.com"
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
Django = ">=2.2,<5.2"
azure-identity = ">=1.15,<2"
azure-communication-email = "^1.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.13"
tox = "^4.14"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
py_version = 312
default_section = "THIRDPARTY"
known_first_party = ["django_azure_communication_email"]
known_django = "django"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "DJANGO", "FIRSTPARTY", "LOCALFOLDER"]
combine_as_imports = true
sort_reexports = true
multi_line_output = 5
lines_after_imports = 2
combine_star = true
include_trailing_comma = true
remove_redundant_aliases = true
skip_gitignore = true