Skip to content

Commit 47ce5b6

Browse files
committed
chore: add MIT license and project metadata
- Add MIT LICENSE file - Add project URLs (homepage, docs, repo, issues, changelog) - Add classifiers including free-threading support (unstable) - Add keywords for discoverability - Update description to reference JSONLT specification - Bump version to 0.1.0a2
1 parent e5466e2 commit 47ce5b6

2 files changed

Lines changed: 58 additions & 2 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Tony Burns
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,47 @@ build-backend = "uv_build"
44

55
[project]
66
name = "jsonlt-python"
7-
version = "0.1.0a1"
8-
description = "A library for using a JSON Lines (JSONL) file as a lightweight database."
7+
version = "0.1.0a2"
8+
description = "Reference implementation of the JSONLT (JSON Lines Table) specification for Python."
99
readme = "README.md"
10+
license = "MIT"
1011
requires-python = ">=3.10"
12+
keywords = [
13+
"append-only",
14+
"data-format",
15+
"database",
16+
"json-lines",
17+
"jsonl",
18+
"jsonlines",
19+
"jsonlt",
20+
"version-control",
21+
]
22+
classifiers = [
23+
"Development Status :: 3 - Alpha",
24+
"Intended Audience :: Developers",
25+
"License :: OSI Approved :: MIT License",
26+
"Operating System :: OS Independent",
27+
"Programming Language :: Python :: 3",
28+
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
33+
"Programming Language :: Python :: Free Threading :: 1 - Unstable",
34+
"Topic :: Database",
35+
"Topic :: File Formats :: JSON",
36+
"Topic :: Software Development :: Libraries :: Python Modules",
37+
"Typing :: Typed",
38+
]
1139
dependencies = ["typing-extensions>=4.15.0"]
1240

41+
[project.urls]
42+
Changelog = "https://github.com/jsonlt/jsonlt-python/blob/main/CHANGELOG.md"
43+
Documentation = "https://jsonlt.org/docs"
44+
Homepage = "https://jsonlt.org"
45+
Issues = "https://github.com/jsonlt/jsonlt-python/issues"
46+
Repository = "https://github.com/jsonlt/jsonlt-python"
47+
1348
[dependency-groups]
1449
dev = [
1550
"basedpyright>=1.36.1",

0 commit comments

Comments
 (0)