diff --git a/README.md b/README.md
index 7c05e586..bdfb6f23 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,8 @@
Server implementation of the [Eligibility Verification API](https://docs.calitp.org/eligibility-api/specification). See
the client implementation in [`benefits`](https://github.com/cal-itp/benefits).
+Eligibility Server is open-source software that is designed, developed, and maintained by Compiler LLC on behalf of Caltrans, Cal-ITP, and our agency partners.
+
View the technical documentation online: [https://docs.calitp.org/eligibility-server](https://docs.calitp.org/eligibility-server)
## License
diff --git a/docs/README.md b/docs/README.md
index 1735e42d..9ece7677 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -2,7 +2,7 @@
This website provides technical documentation for the `eligibility-server` application, a part of the [`benefits`](https://docs.calitp.org/benefits) application, from the [California Integrated Travel Project (Cal-ITP)](https://www.calitp.org).
-Documentation for the `main` (default) branch is available [online](https://docs.calitp.org/eligibility-server).
+Eligibility Server is open-source software that is designed, developed, and maintained by Compiler LLC on behalf of Caltrans, Cal-ITP, and our agency partners.
## Overview
diff --git a/pyproject.toml b/pyproject.toml
index d366e9b2..a9e753aa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,6 +6,9 @@ readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3 :: Only"]
requires-python = ">=3.9"
+maintainers = [
+ { name = "Compiler LLC", email = "dev@compiler.la" }
+]
dependencies = [
"eligibility-api==2023.9.1",
"Flask==3.0.3",
@@ -29,8 +32,10 @@ test = [
]
[project.urls]
+Changelog = "https://github.com/cal-itp/eligibility-server/releases"
Code = "https://github.com/cal-itp/eligibility-server"
Documentation = "https://docs.calitp.org/eligibility-server"
+Homepage = "https://www.calitp.org/#initiatives-benefits"
Issues = "https://github.com/cal-itp/eligibility-server/issues"
[build-system]