michalc/stream-inflate

View on GitHub
pyproject.toml

Summary

Maintainability
Test Coverage
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "stream-inflate"
version = "0.0.0.dev0"
authors = [
  { name="Michal Charemza", email="michal@charemza.name" },
]
description = "Uncompress DEFLATE streams in pure Python"
readme = "README.md"
requires-python = ">=3.6.7, !=3.7.0"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Topic :: System :: Archiving :: Compression",
]

[project.optional-dependencies]
dev = [
    "coverage",
]

[project.urls]
"Source" = "https://github.com/michalc/stream-inflate"

[tool.hatch.build]
include = [
  "stream_inflate.py",
]