├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.rst ├── dev-requirements.txt ├── pyproject.toml └── src └── pkgsample ├── __init__.py ├── add.py └── add_cli.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pkgsample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/src/pkgsample/__init__.py -------------------------------------------------------------------------------- /src/pkgsample/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/src/pkgsample/add.py -------------------------------------------------------------------------------- /src/pkgsample/add_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/pkgsample/HEAD/src/pkgsample/add_cli.py --------------------------------------------------------------------------------