-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 810 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
35
36
37
38
39
40
41
[project]
name = "trubrics"
version = "1.8.5"
requires-python = ">=3.10"
license = { text = "Apache 2.0" }
authors = [
{ name="Jeff Kayne", email="jeff.kayne@trubrics.com" },
]
description = "Python SDK to track events in Trubrics."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"requests>=2.31.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.uv]
dev-dependencies = [
"pre-commit==3.6.0",
"mypy==1.8.0",
"ruff==0.9.4",
]
[tool.ruff]
line-length = 88
target-version = "py310"
include = ["trubrics/**/*.py"]
[tool.mypy]
mypy_path = ["trubrics"]