Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![ty](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ty/main/assets/badge/v0.json)](https://github.com/astral-sh/ty)

`lite-bootstrap` assists you in creating applications with all the necessary instruments already set up.
`lite-bootstrap` helps you bootstrap production-ready Python microservices with all the necessary instruments already set up.

With `lite-bootstrap`, you receive an application with lightweight built-in support for:
- `sentry`
Expand Down
25 changes: 9 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
[project]
name = "lite-bootstrap"
description = "Lite package for bootstrapping new microservices"
description = "Lightweight bootstrap for production-ready Python microservices"
authors = [
{ name = "Artur Shiriev", email = "me@shiriev.ru" },
]
readme = "README.md"
requires-python = ">=3.10,<4"
license = "MIT"
keywords = [
"python",
"microservice",
"bootstrap",
"opentelemetry",
"sentry",
"error-tracing",
"fastapi",
"litestar",
"faststream",
"structlog",
"fastmcp",
]
keywords = ["microservices", "bootstrap", "opentelemetry", "sentry", "error-tracing", "fastapi", "litestar", "faststream", "structlog", "fastmcp", "python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -35,8 +25,11 @@ dependencies = [
]

[project.urls]
repository = "https://github.com/modern-python/lite-bootstrap"
docs = "https://lite-bootstrap.modern-python.org"
Homepage = "https://lite-bootstrap.modern-python.org"
Documentation = "https://lite-bootstrap.modern-python.org"
Repository = "https://github.com/modern-python/lite-bootstrap"
Issues = "https://github.com/modern-python/lite-bootstrap/issues"
Changelog = "https://github.com/modern-python/lite-bootstrap/releases"

[project.optional-dependencies]
sentry = [
Expand Down