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 python-minifier could be defined as the builder, e.g.,
[build-system] requires = [ "setuptools>=42", "wheel", "python-minifier>=xyz", ] build-backend = "python_minifier.build_meta"
to spit out minified package code.
Modern Python projects define their build requirements in
pyproject.toml
, e.g.,It'd be nice addition of python-minifier could be defined as the builder, e.g.,
to spit out minified package code.