uktrade/iterable-subprocess

View on GitHub
pyproject.toml

Summary

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

[project]
name = "iterable-subprocess"
version = "0.0.0.dev0"
authors = [
  { name="Department for International Trade", email="sre@digital.trade.gov.uk" },
]
description = "Python context manager to communicate with a subprocess using iterables of bytes rather Python's built-in subprocess module"
readme = "README.md"
requires-python = ">=3.6.7"
classifiers = [
    'Programming Language :: Python :: 3',
    'License :: OSI Approved :: MIT License',
]

[project.optional-dependencies]
dev = [
    "psutil",
    "pytest-cov",
]

[project.urls]
"Source" = "https://github.com/uktrade/iterable-subprocess"

[tool.hatch.build]
include = [
  "iterable_subprocess.py"
]