mcarchive-org/pyproject.toml
Ryan Malloy 52a2be7cc6
Some checks are pending
CI / test (3.10) (push) Waiting to run
CI / test (3.11) (push) Waiting to run
CI / test (3.12) (push) Waiting to run
CI / test (3.13) (push) Waiting to run
Release prep: CHANGELOG, CI workflow, Gitea project URLs
- CHANGELOG.md documents the 2026.04.21 initial release: full tool
  inventory, every reliability claim, and test count (66/66 green).
- .github/workflows/ci.yml runs ruff check + pytest -m 'not network'
  across Python 3.10/3.11/3.12/3.13 on push and PR. Skips live archive.org
  tests in CI to keep runs fast and avoid hammering archive.org.
- pyproject.toml [project.urls]: point Homepage / Repository / Bug Tracker
  / Changelog at git.supported.systems/rsp2k/mcarchive-org. Keep the
  archive.org developer docs link for context.
2026-04-21 21:20:56 -06:00

62 lines
1.7 KiB
TOML

[project]
name = "mcarchive-org"
version = "2026.04.21"
description = "MCP server for searching and downloading files from the Internet Archive (archive.org)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Ryan Malloy", email = "ryan@supported.systems" },
]
keywords = ["mcp", "archive.org", "internet-archive", "fastmcp", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"fastmcp>=3.2.4",
"httpx>=0.28.1",
]
[project.scripts]
mcarchive-org = "mcarchive_org.server:main"
[project.urls]
Homepage = "https://git.supported.systems/rsp2k/mcarchive-org"
Repository = "https://git.supported.systems/rsp2k/mcarchive-org"
"Bug Tracker" = "https://git.supported.systems/rsp2k/mcarchive-org/issues"
Changelog = "https://git.supported.systems/rsp2k/mcarchive-org/src/branch/main/CHANGELOG.md"
"Archive.org API docs" = "https://archive.org/developers/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcarchive_org"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF"]
ignore = ["E501"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
]