-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.89 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 2.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
# Floor pinned: PEP 639 license expressions (the `license = "MIT"` form below and
# the Metadata-Version 2.4 output PyPI reads) need hatchling 1.27 or newer. An
# unpinned requirement would silently build older, lossier metadata on a machine
# that happens to resolve an earlier hatchling.
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "seatlayer"
version = "0.5.0"
description = "Official Python server SDK for the SeatLayer reserved-seating API."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{ name = "SeatLayer", email = "hello@seatlayer.io" }]
maintainers = [{ name = "SeatLayer", email = "hello@seatlayer.io" }]
keywords = ["seatlayer", "reserved-seating", "seating-chart", "ticketing", "box-office"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business",
"Typing :: Typed",
]
# No runtime dependencies on purpose: a server SDK that drags in a dependency
# tree becomes a supply-chain surface for every customer who installs it.
dependencies = []
[project.urls]
Homepage = "https://seatlayer.io"
Documentation = "https://docs.seatlayer.io/server-sdk/install/"
Changelog = "https://github.com/seatlayer/seatlayer-python/blob/main/CHANGELOG.md"
Source = "https://github.com/seatlayer/seatlayer-python"
Issues = "https://github.com/seatlayer/seatlayer-python/issues"
[project.optional-dependencies]
# `typing_extensions` is DEV-ONLY and must stay that way — `dependencies` above is
# empty on purpose, and a server SDK that drags in a tree becomes a supply-chain
# surface for every customer. The test suite needs `Self`, which `typing` only
# gained in 3.11 while this package supports 3.10.
dev = ["pytest>=8", "mypy>=1.11", "ruff>=0.6", "typing_extensions>=4.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/seatlayer"]
[tool.hatch.build.targets.sdist]
# The sdist keeps `tests/` on purpose — downstream redistributors (Debian, Fedora,
# conda-forge) build from the sdist and expect to be able to run the suite. What it
# must NOT carry is repo-internal process material: AGENTS.md is instructions for
# agents working on this repo, not documentation for people installing the package.
exclude = [
"/.github",
"/.gitignore",
"/AGENTS.md",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = true
files = ["src/seatlayer"]