-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.05 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 = "svix-ksuid"
version = "0.7.0"
description = "A pure-Python KSUID implementation"
authors = [
{ name = "Svix", email = "development@svix.com" }
]
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"python-baseconv"
]
keywords = [
"svix",
"ksuid",
]
[project.urls]
Repository = "https://github.com/svix/python-ksuid/"
Issues = "https://github.com/svix/python-ksuid/issues"
Changelog = "https://github.com/svix/python-ksuid/blob/main/ChangeLog.md"
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [".github/*", "scripts/*", "tests/*", 'uv.lock', "mypy.ini", "/.*"]
[tool.hatch.build.targets.wheel]
packages = ["ksuid"]
[dependency-groups]
dev = [
"pytest>=9.0",
"ty>=0.0.23",
"ruff>=0.15.6",
]
[tool.ruff]
# we're not on VT220's any more
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# isort
"I",
]