-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.81 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
[project]
name = "pydocks"
version = "1.0.2"
description = "Pytest fixures for running tests with Docker containers"
authors = [{name = "Sylvain Mouquet", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
license = { text = "MIT" }
url = "https://github.com/sylvainmouquet/pydocks"
keywords = ["pytest", "docker", "test", "containers", "pydocks", "postgresql", "vault", "redis"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
homepage = "https://github.com/sylvainmouquet/pydocks"
documentation = "https://github.com/sylvainmouquet/pydocks"
repository = "https://github.com/sylvainmouquet/pydocks"
changelog = "https://github.com/sylvainmouquet/pydocks/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"anyio>=4.6.0",
"asyncpg>=0.30",
"reattempt>=1.0.10",
"python-on-whales>=0.73.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
"pytest>=8.3.3",
"ruff>=0.6.7",
"reattempt>=0.0.1",
"loguru>=0.7.2",
"pip>=24.2",
"aiohttp>=3.10.10",
"redis>=5.1.1",
]
[tool.uv.sources]
pydocks = { path = "pydocks" }
# asyncpg = { path = "../asyncpg" }
# asyncpg = { git = "https://github.com/MagicStack/asyncpg"}
[project.entry-points.pytest11]
pydocks = "pydocks"