-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.39 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chromatrace"
version = "0.2.11"
description = "Advanced Python logging with tracing, coloring and FastAPI, Django, and SocketIO integrations"
readme = "README.md"
authors = [
{ name = "Mohammad Mahdi Samei", email = "[email protected]" }
]
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
]
dependencies = [
"asyncio==3.4.3",
"lagom==2.6.0",
"pydantic==2.9.2",
"fastapi==0.100.0",
"socketio==0.2.1",
"python-socketio==5.11.4",
"python-socketio[client]==5.11.4",
"uvicorn[standard]==0.30.6",
"uvicorn-worker==0.2.0",
"python-multipart==0.0.10",
"httpx==0.27.2",
]
[project.urls]
Homepage = "https://github.com/Msameim181/Python-Logging-Best-Practice"
Documentation = "https://github.com/Msameim181/Python-Logging-Best-Practice#readme"
Repository = "https://github.com/Msameim181/Python-Logging-Best-Practice.git"
Issues = "https://github.com/Msameim181/Python-Logging-Best-Practice/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/chromatrace"]