├── .gitignore ├── .isort.cfg ├── .travis.yml ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── spec.rst └── steps.rst ├── integration_tests ├── __init__.py ├── bad_encode_project │ └── schaue p�laylist an.py ├── minimal_project │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── make.bat │ └── readthedocs.yml ├── test_minimal_project.py ├── test_with_python_package.py └── with_python_package │ ├── .gitignore │ ├── docs │ ├── Makefile │ ├── conf.py │ ├── index.rst │ └── make.bat │ ├── my_python_package │ └── __init__.py │ ├── readthedocs.yml │ └── setup.py ├── prospector.yml ├── readthedocs.yml ├── readthedocs_build ├── __init__.py ├── build.py ├── builder │ ├── __init__.py │ ├── base.py │ ├── sphinx.py │ ├── test_base.py │ ├── test_sphinx.py │ ├── test_virtualenv.py │ ├── utils.py │ └── virtualenv.py ├── cli.py ├── config │ ├── __init__.py │ ├── config.py │ ├── find.py │ ├── parser.py │ ├── test_config.py │ ├── test_find.py │ ├── test_parser.py │ ├── test_validation.py │ └── validation.py ├── test_build.py ├── test_cli.py ├── testing │ ├── __init__.py │ ├── test_utils.py │ └── utils.py └── utils.py ├── requirements ├── linting.txt └── tests.txt ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/docs/spec.rst -------------------------------------------------------------------------------- /docs/steps.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/bad_encode_project/schaue p�laylist an.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/minimal_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/minimal_project/Makefile -------------------------------------------------------------------------------- /integration_tests/minimal_project/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/minimal_project/conf.py -------------------------------------------------------------------------------- /integration_tests/minimal_project/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/minimal_project/index.rst -------------------------------------------------------------------------------- /integration_tests/minimal_project/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/minimal_project/make.bat -------------------------------------------------------------------------------- /integration_tests/minimal_project/readthedocs.yml: -------------------------------------------------------------------------------- 1 | name: docs 2 | type: sphinx 3 | -------------------------------------------------------------------------------- /integration_tests/test_minimal_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/test_minimal_project.py -------------------------------------------------------------------------------- /integration_tests/test_with_python_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/test_with_python_package.py -------------------------------------------------------------------------------- /integration_tests/with_python_package/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | -------------------------------------------------------------------------------- /integration_tests/with_python_package/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/docs/Makefile -------------------------------------------------------------------------------- /integration_tests/with_python_package/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/docs/conf.py -------------------------------------------------------------------------------- /integration_tests/with_python_package/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/docs/index.rst -------------------------------------------------------------------------------- /integration_tests/with_python_package/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/docs/make.bat -------------------------------------------------------------------------------- /integration_tests/with_python_package/my_python_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/with_python_package/readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/readthedocs.yml -------------------------------------------------------------------------------- /integration_tests/with_python_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/integration_tests/with_python_package/setup.py -------------------------------------------------------------------------------- /prospector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/prospector.yml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /readthedocs_build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readthedocs_build/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/build.py -------------------------------------------------------------------------------- /readthedocs_build/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/__init__.py -------------------------------------------------------------------------------- /readthedocs_build/builder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/base.py -------------------------------------------------------------------------------- /readthedocs_build/builder/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/sphinx.py -------------------------------------------------------------------------------- /readthedocs_build/builder/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/test_base.py -------------------------------------------------------------------------------- /readthedocs_build/builder/test_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/test_sphinx.py -------------------------------------------------------------------------------- /readthedocs_build/builder/test_virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/test_virtualenv.py -------------------------------------------------------------------------------- /readthedocs_build/builder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/utils.py -------------------------------------------------------------------------------- /readthedocs_build/builder/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/builder/virtualenv.py -------------------------------------------------------------------------------- /readthedocs_build/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/cli.py -------------------------------------------------------------------------------- /readthedocs_build/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/__init__.py -------------------------------------------------------------------------------- /readthedocs_build/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/config.py -------------------------------------------------------------------------------- /readthedocs_build/config/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/find.py -------------------------------------------------------------------------------- /readthedocs_build/config/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/parser.py -------------------------------------------------------------------------------- /readthedocs_build/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/test_config.py -------------------------------------------------------------------------------- /readthedocs_build/config/test_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/test_find.py -------------------------------------------------------------------------------- /readthedocs_build/config/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/test_parser.py -------------------------------------------------------------------------------- /readthedocs_build/config/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/test_validation.py -------------------------------------------------------------------------------- /readthedocs_build/config/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/config/validation.py -------------------------------------------------------------------------------- /readthedocs_build/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/test_build.py -------------------------------------------------------------------------------- /readthedocs_build/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/test_cli.py -------------------------------------------------------------------------------- /readthedocs_build/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readthedocs_build/testing/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/testing/test_utils.py -------------------------------------------------------------------------------- /readthedocs_build/testing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/testing/utils.py -------------------------------------------------------------------------------- /readthedocs_build/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/readthedocs_build/utils.py -------------------------------------------------------------------------------- /requirements/linting.txt: -------------------------------------------------------------------------------- 1 | prospector 2 | pylint-django 3 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/readthedocs-build/HEAD/tox.ini --------------------------------------------------------------------------------