forked from sokripon/python-tacomail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 697 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 697 Bytes
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
[project]
name = "tacomail"
version = "0.1.0"
description = "A Python client for Tacomail"
readme = "README.md"
authors = [
{ name = "sokripon", email = "sokripon@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.0",
"typer>=0.12.0",
"rich>=13.0.0",
]
[project.scripts]
tacomail = "tacomail.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"aiosmtpd>=1.4.6",
"pytest-asyncio>=0.24.0",
"pytest>=8.3.4",
"python-dotenv>=1.0.1",
"ruff>=0.8.1",
]
[tool.pytest.ini_options]
markers = "flow"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
target-version = "py312"