769d0ded47
Refactor Shipyard to be better able to leverage common packages and conform with the target UCP standard layout. This change supports the same tox entrypoints at the root level, but the preferred approach is to use make targets defined in the Makefile such as 'make tests' and 'make lint' The previous tox.ini has moved and been tailored to the specifics of each subproject at src/bin/*/tox.ini Autotmatic generation of the policy and configuration files has been removed from the sphinx build for now but these files will be automatically generated locally into the docs source by using a 'make docs' command. This may need to be revisited later to re-enable the automatic generation of these files such that readthedocs would still support the project layout. Change-Id: Ifdc1cd4cf35fb3c5923414c677b781a60a9bae42
120 lines
1.4 KiB
Plaintext
120 lines
1.4 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Unit tests
|
|
src/bin/*/tests/unit/
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
**/env/
|
|
**/build/
|
|
**/develop-eggs/
|
|
**/dist/
|
|
**/downloads/
|
|
**/eggs/
|
|
**/.eggs/
|
|
lib/
|
|
**/lib64/
|
|
parts/
|
|
**/sdist/
|
|
var/
|
|
wheels/
|
|
**/*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
**/htmlcov/
|
|
cov/*
|
|
**/.tox/
|
|
**/.coverage
|
|
**/.coverage.*
|
|
**/.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
local_settings.py
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
docs/*/_static/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# celery beat schedule file
|
|
celerybeat-schedule
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# dotenv
|
|
.env
|
|
|
|
# virtualenv
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# Generated bogus docs
|
|
ChangeLog
|
|
AUTHORS
|
|
|
|
# build/lint artifacts
|
|
*.tgz
|
|
**/*.tgz
|
|
/charts/shipyard/charts
|
|
/charts/shipyard/requirements.lock
|
|
.DS_Store
|
|
|
|
# vscode
|
|
.vscode/
|
|
|
|
!src/lib/
|