# SPDX-FileCopyrightText: 2020-present David A. Greene <dag@obbligato.org>

# SPDX-License-Identifier: AGPL-3.0-or-later

# Copyright 2024 David A. Greene

# This file is part of git-project

# git-project is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.

# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

# You should have received a copy of the GNU Affero General Public License along
# with git-project. If not, see <https://www.gnu.org/licenses/>.

# Compiled python modules.
*.pyc

# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info

# Python bytecode cache directories.
__pycache__/

# Version file generated by vcs-versioning.
/_version.py

# Setuptools build folder.
/build/

# Editor backup files.
*~

# Coverage data.  The coverage config sets parallel, so each run also writes
# .coverage.<host>.<pid>.<random> files for coverage combine.
.coverage*

# Coverage HTML report.
/htmlcov/

# Sphinx build output.
/docs/_build/
