From 1ef3d3ccbf1cd366d64603fc3b1713d8b227bacc Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Sat, 19 Nov 2022 15:15:44 -0500 Subject: [PATCH] update version, classifiers --- conda_package_streaming/__init__.py | 2 +- pyproject.toml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/conda_package_streaming/__init__.py b/conda_package_streaming/__init__.py index 43c4ab0..49e0fc1 100644 --- a/conda_package_streaming/__init__.py +++ b/conda_package_streaming/__init__.py @@ -1 +1 @@ -__version__ = "0.6.1" +__version__ = "0.7.0" diff --git a/pyproject.toml b/pyproject.toml index ff2dbb8..dd6f4f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,8 +14,14 @@ authors = [ { name = "Anaconda, Inc. & Contributors", email = "conda@continuum.io" }, ] description = "Download metadata from conda packages without transferring entire file." -license = { "file" = "LICENSE" } +license = { file = "LICENSE" } readme = "README.md" +classifiers = [ + "License :: OSI Approved :: BSD License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] dynamic = ["version"] requires-python = ">=3.7" dependencies = ["requests", "zstandard >=0.15"]