-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 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
[project]
name = "commet-sdk"
version = "7.2.0"
description = "Commet SDK for Python - Billing and usage tracking for SaaS"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "Commet Team" }]
keywords = [
"billing",
"sdk",
"payments",
"invoicing",
"usage-based-billing",
"seat-licensing",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"Typing :: Typed",
]
dependencies = ["httpx>=0.27"]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio", "ruff", "mypy", "respx"]
[project.urls]
Homepage = "https://commet.co"
Repository = "https://github.com/commet-labs/commet-python"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
# TestClock / TestClockBilling are response dataclasses (not test classes); pytest
# tries to collect them only because their names start with "Test" when imported.
"ignore:cannot collect test class:pytest.PytestCollectionWarning",
]