├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── autopush.yml │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── CITATION.cff ├── LICENSE ├── README.rst ├── doc ├── .gitignore ├── Makefile ├── conf.py ├── index.rst ├── misc.rst ├── reference.rst └── upload-docs.sh ├── genpy ├── __init__.py ├── py.typed └── version.py ├── pyproject.toml └── test └── test_genpy.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/autopush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.github/workflows/autopush.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/README.rst -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/misc.rst -------------------------------------------------------------------------------- /doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/reference.rst -------------------------------------------------------------------------------- /doc/upload-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/doc/upload-docs.sh -------------------------------------------------------------------------------- /genpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/genpy/__init__.py -------------------------------------------------------------------------------- /genpy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /genpy/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/genpy/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/test_genpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inducer/genpy/HEAD/test/test_genpy.py --------------------------------------------------------------------------------