Python/SetupTools
- Minimalist config for installing for local editing:
- Setup.cfg
*
[metadata] name = wordlet version = 0.0.1 author = Kunal Bhalla author_email = bhalla.kunal@gmail.com description = Solves all the wordles! [options] packages = find: python_requires = >=3.8 [options.entry_points] console_scripts = wordlet = wordlet:main
pyproject.toml
*
[build-system] requires = [ "setuptools>=42", "wheel" ] build-backend = "setuptools.build_meta"
- Remember to install a new pip >= 21 to allow editable installation
pip install --editable .
- Setup.cfg