-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (69 loc) · 1.94 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]
requires = ["hatchling==1.31.0"]
build-backend = "hatchling.build"
[project]
name = "threadweave"
version = "0.2.0"
description = "Standards-grounded JWZ/RFC 5256 email threading and IMAP THREAD serialization — pure stdlib, no runtime dependencies."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Contextual Wisdom Lab" }]
keywords = [
"email",
"threading",
"imap",
"jwz",
"rfc5256",
"rfc5322",
"mailbox",
"conversation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications :: Email",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
test = [
"coverage[toml]==7.15.3",
"pytest==9.1.1",
]
[project.urls]
Homepage = "https://github.com/ContextualWisdomLab/ThreadWeave"
Repository = "https://github.com/ContextualWisdomLab/ThreadWeave"
Issues = "https://github.com/ContextualWisdomLab/ThreadWeave/issues"
Changelog = "https://github.com/ContextualWisdomLab/ThreadWeave/blob/main/CHANGELOG.md"
Documentation = "https://github.com/ContextualWisdomLab/ThreadWeave#readme"
[tool.hatch.build.targets.wheel]
packages = ["src/threadweave"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/docs",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["threadweave"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.ruff]
line-length = 100
target-version = "py310"