Skip to content

Commit b8c74d3

Browse files
committed
Add meta data to PyPI
1 parent 25b8736 commit b8c74d3

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
v0.4.2 (2026-02-07)
4+
5+
- Add meta data to PyPI
6+
37
v0.4.1 (2026-02-07)
48

59
- Make rdflib, duckdb, and clingo optional dependencies (e.g., `pip install geist-p[rdflib]`) with friendly error messages when a required dependency is missing

pyproject.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "geist-p"
7-
version = "0.4.1"
7+
version = "0.4.2"
8+
description = "Geist is a new templating language for declarative data manipulation, query, and report generation."
9+
readme = "README.md"
10+
license = {file = "LICENSE"}
11+
requires-python = ">=3.10"
12+
authors = [
13+
{name = "Meng Li"},
14+
{name = "Timothy McPhillips"},
15+
{name = "Bertram Ludäscher"},
16+
]
17+
classifiers = [
18+
"Operating System :: OS Independent",
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
]
822
dependencies = [
923
"click",
1024
"pandas",
@@ -14,6 +28,10 @@ dependencies = [
1428
"requests",
1529
]
1630

31+
[project.urls]
32+
Homepage = "https://cirss.github.io/geist-p"
33+
Repository = "https://github.com/cirss/geist-p"
34+
1735
[project.optional-dependencies]
1836
rdflib = ["rdflib", "owlrl"]
1937
duckdb = ["duckdb", "pyarrow"]

0 commit comments

Comments
 (0)