├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── populate.ini ├── populate.py ├── template ├── .codeclimate.yml ├── .dockerignore ├── .gitignore ├── .pylintrc ├── .travis.yml.template ├── Dockerfile.template ├── LICENSE.template ├── README.rst.template ├── docker-compose.yml ├── requirements.txt ├── requirements_static_analysis.txt ├── requirements_test.txt ├── requirements_test_runner.txt ├── setup.cfg ├── setup.py.template ├── tests.py.template ├── tox.ini └── {{ package_dir_name }} │ ├── __init__.py │ └── test │ └── __init__.py └── test ├── docker-compose.yml ├── integration ├── Dockerfile ├── docker-entrypoint.sh └── tests.bats └── run-integration-tests.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/README.md -------------------------------------------------------------------------------- /populate.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/populate.ini -------------------------------------------------------------------------------- /populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/populate.py -------------------------------------------------------------------------------- /template/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/.codeclimate.yml -------------------------------------------------------------------------------- /template/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/.dockerignore -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/.pylintrc -------------------------------------------------------------------------------- /template/.travis.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/.travis.yml.template -------------------------------------------------------------------------------- /template/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/Dockerfile.template -------------------------------------------------------------------------------- /template/LICENSE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/LICENSE.template -------------------------------------------------------------------------------- /template/README.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/README.rst.template -------------------------------------------------------------------------------- /template/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/docker-compose.yml -------------------------------------------------------------------------------- /template/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/requirements_static_analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/requirements_static_analysis.txt -------------------------------------------------------------------------------- /template/requirements_test.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | -------------------------------------------------------------------------------- /template/requirements_test_runner.txt: -------------------------------------------------------------------------------- 1 | nose 2 | coverage 3 | -------------------------------------------------------------------------------- /template/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /template/setup.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/setup.py.template -------------------------------------------------------------------------------- /template/tests.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/tests.py.template -------------------------------------------------------------------------------- /template/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/template/tox.ini -------------------------------------------------------------------------------- /template/{{ package_dir_name }}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/{{ package_dir_name }}/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/test/integration/Dockerfile -------------------------------------------------------------------------------- /test/integration/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/test/integration/docker-entrypoint.sh -------------------------------------------------------------------------------- /test/integration/tests.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/test/integration/tests.bats -------------------------------------------------------------------------------- /test/run-integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themattrix/python-pypi-template/HEAD/test/run-integration-tests.sh --------------------------------------------------------------------------------