Open nschloe opened 2 years ago
Modern Python projects define their build requirements in pyproject.toml, e.g.,
pyproject.toml
[build-system] requires = [ "setuptools>=42", "wheel", ] build-backend = "setuptools.build_meta"
It'd be nice addition of pyminifier could be defined as the builder, e.g.,
[build-system] requires = [ "setuptools>=42", "wheel", "pyminifier>=xyz", ] build-backend = "pyminifier.build_meta"
to spit out a minified package code.
Modern Python projects define their build requirements in
pyproject.toml
, e.g.,It'd be nice addition of pyminifier could be defined as the builder, e.g.,
to spit out a minified package code.