From fbb1a3f4e96fcdf3fadb5ad9c83489d71b834538 Mon Sep 17 00:00:00 2001 From: Elephant Liu Date: Tue, 25 Nov 2025 20:56:51 +0800 Subject: [PATCH] chore: package --- MANIFEST.in | 4 ++++ pyproject.toml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 MANIFEST.in create mode 100644 pyproject.toml diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..1fb8477 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +exclude .flake8 +exclude MANIFEST.in + +prune .github diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8eb744d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,34 @@ +[project] +name = "drow_aio" +description = "Prometheus http query client for asyncio" + +authors = [ + { name = "Elephant Liu" } +] + +license = "MIT" + +classifiers = [ + "Programming Language :: Python :: 3", +] + +# drow requires python >= 3.11 +requires-python = ">=3.11" + +dependencies = [ + "drow", + "httpx", +] + +readme = "README.md" + +dynamic = ["version"] + +[project.urls] +Homepage = "https://github.com/xospc/drow-aio" + +[build-system] +requires = ["setuptools>=64", "setuptools-scm>=8"] +build-backend = "setuptools.build_meta" + +[tool.setuptools_scm]