-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 751 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "appwrite-lab"
version = "0.1.5"
description = "Zero-click Appwrite test environments."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"playwright",
"typer>=0.16.0",
"python-dotenv>=1.1.0",
"pytest>=8.4.1",
"httpx>=0.28.1",
"pytest-asyncio>=1.1.0",
]
license = "MIT"
[tool.setuptools]
packages = { find = { where = ["."] } }
include-package-data = true
[tool.setuptools.package-data]
appwrite_lab = ["templates/**/*"]
[project.scripts]
appwrite-lab = "appwrite_lab.cli.entry:app"
awlab = "appwrite_lab.cli.entry:app"
[tool.pytest.ini_options]
markers = ["e2e: mark test as e2e"]
asyncio_mode = "auto"