-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.49 KB
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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "logister-python"
version = "0.2.3"
description = "Python SDK for sending errors, logs, metrics, transactions, spans, and check-ins to Logister."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Taimoor Qureshi" }
]
keywords = ["logister", "observability", "error-tracking", "monitoring", "python"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"httpx>=0.27,<1"
]
[project.urls]
Homepage = "https://docs.logister.org/integrations/python/"
Documentation = "https://docs.logister.org/integrations/python/"
Source = "https://github.com/taimoorq/logister-python"
Issues = "https://github.com/taimoorq/logister-python/issues"
Changelog = "https://github.com/taimoorq/logister-python/blob/main/CHANGELOG.md"
[project.optional-dependencies]
fastapi = [
"fastapi>=0.110,<1"
]
celery = [
"celery>=5.4,<6"
]
django = [
"django>=4.2,<6"
]
flask = [
"flask>=3,<4"
]
dev = [
"build>=1.2.2",
"pytest>=8.3,<9"
]
[tool.hatch.build.targets.wheel]
packages = ["src/logister"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]