From 85dccb0b890c49bd3c951a99025ddba665306729 Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Wed, 4 Sep 2024 05:44:49 +0200 Subject: [PATCH] chore: update copier template --- .copier-answers.yml | 2 +- .gitignore | 1 + justfile | 3 ++- pyproject.toml | 6 +++--- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index 92512b9..173c1e8 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,6 +1,6 @@ # Changes here will be overwritten by Copier. NEVER EDIT MANUALLY. -_commit: 1478dd4 +_commit: fe3dac4 _src_path: https://github.com/vivienm/copier-python-uv author_email: v.maisonneuve@gmail.com author_name: Vivien Maisonneuve diff --git a/.gitignore b/.gitignore index 874b352..b4e131f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /build/ /dist/ /target/ +__pycache__/ diff --git a/justfile b/justfile index b788c0a..797a80c 100644 --- a/justfile +++ b/justfile @@ -41,7 +41,8 @@ sphinx: [group('python')] pip-audit: - uv run pip-audit --strict --require-hashes --disable-pip --requirement <(uv pip compile --no-header --no-annotate --generate-hashes --universal <(uv pip list --format=freeze --exclude-editable)) + requirements="$(uv export --format requirements-txt --all-extras --no-emit-project)" \ + && uv run pip-audit --strict --require-hashes --disable-pip --requirement <(echo "${requirements}") typos: typos diff --git a/pyproject.toml b/pyproject.toml index 00e5b00..ccec547 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,14 +2,14 @@ name = "tdigest-ch" version = "0.1.0" description = "A Python library for estimating quantiles in a stream, using ClickHouse t-digest data structure" +readme = "README.md" authors = [ { name = "Vivien Maisonneuve", email = "v.maisonneuve@gmail.com" }, ] -dependencies = [] -readme = "README.md" -requires-python = ">=3.10" license = { text = "MIT" } classifiers = ["Private :: Do Not Upload"] +requires-python = ">=3.10" +dependencies = [] [project.urls] Documentation = "https://vivienm.github.io/python-tdigest-ch"