forked from sendgrid/sendgrid-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.29 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
[project]
name = "sendgrid"
version = "6.12.4"
description = "Twilio SendGrid library for Python"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.9"
authors = [
]
dependencies = [
"python_http_client>=3.2.1",
"cryptography>=44.0.1",
"werkzeug>=3.0.6",
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
]
[dependency-groups]
dev = ["ruff>=0.13.0"]
test = [
"coverage>=7.10.6",
"cryptography>=44.0.1",
"flask==3.1.0",
"more-itertools==5.0.0",
"python-http-client>=3.2.1",
"pyyaml>=4.2b1",
"six==1.17.0",
"tox-uv>=1.28.0",
]
[project.urls]
Homepage = "https://sendgrid.com"
Repository = "https://github.com/sendgrid/sendgrid-python/"
Changelog = "https://github.com/sendgrid/sendgrid-python/blob/main/CHANGELOG.md"
[tool.ruff]
line-length = 320
[tool.ruff.lint]
select = ["E722", "F40", "F841", "I"]
[build-system]
requires = ["uv_build>=0.8.18,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "sendgrid"
module-root = ""