-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.25 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "pyback-utils"
version = "0.1.1"
authors = [{ name = "Pedro Schauenberg F. Cantidio", email = "[email protected]" }]
description = "A set of utilities for Python back-end development."
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
"starlette>=0.41.3",
"pydantic>=2.10.2",
"opentelemetry-api>=1.24.0",
"opentelemetry-proto>=1.24.0",
"opentelemetry-sdk>=1.24.0"
]
[project.optional-dependencies]
test = [
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0"
]
[project.urls]
homepage = "https://github.com/ppcantidio/pyback-utils.py"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"