https://github.com/GPflow/GPflow
Revision a0df00ca67f074b917f8d12fb3363f9433a20c1e authored by st-- on 10 September 2020, 11:45:58 UTC, committed by GitHub on 10 September 2020, 11:45:58 UTC
Adds Copyright notice and Apache license text (short form) to the preamble of all python files underneath gpflow/.
Also unifies the copyright notice to simply state "The GPflow Contributors" to simplify maintenance of the copyright notices (this does not affect who holds copyright).
1 parent 7b2a0c8
Raw File
Tip revision: a0df00ca67f074b917f8d12fb3363f9433a20c1e authored by st-- on 10 September 2020, 11:45:58 UTC
add license text to all gpflow submodules (#1480)
Tip revision: a0df00c
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.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/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Emacs backups
*~

# Pycharm IDE directory
.idea

# IPython Notebooks
.ipynb_checkpoints
*.ipynb

# VSCode
.vscode

# OSX
.DS_Store

# mypy artifacts
.mypy_cache
back to top