├── .github └── FUNDING.yml ├── .gitignore ├── .python-version ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── assets ├── pip-dev-logo.png └── pip-dev-screenshot.png ├── index.html ├── main.py ├── pip_dev ├── __init__.py └── app.py ├── pyproject.toml ├── pyscript.toml ├── tests ├── __init__.py ├── test_app.py └── test_package.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: nok 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/README.md -------------------------------------------------------------------------------- /assets/pip-dev-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/assets/pip-dev-logo.png -------------------------------------------------------------------------------- /assets/pip-dev-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/assets/pip-dev-screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/index.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/main.py -------------------------------------------------------------------------------- /pip_dev/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /pip_dev/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/pip_dev/app.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyscript.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/pyscript.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nok/pip-dev/HEAD/uv.lock --------------------------------------------------------------------------------