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
7 changes: 5 additions & 2 deletions pigz_python/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
""" Metadata about the Pigz Python package """
__version__ = "1.0.1"
"""Metadata about the Pigz Python package"""

from importlib.metadata import version

__version__ = version("pigz-python")

from pigz_python.pigz_python import PigzFile, compress_file # noqa
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"

[project]
name = "pigz-python"
version = "2.0.0a0"
description = "A pure Python implementation of the pigz utility."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{name = "Ben Guise", email = "bguise135@gmail.com"},
]
maintainers = [
{name = "Ben Guise", email = "bguise135@gmail.com"},
]
keywords = ["zip", "gzip", "compression"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[project.urls]
Homepage = "https://github.com/bguise987/pigz-python"
Repository = "https://github.com/bguise987/pigz-python"

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description_file = README.md
34 changes: 0 additions & 34 deletions setup.py

This file was deleted.