]> git.wh0rd.org - gnudebbugs.git/blob - src/gnudebbugs/__init__.py
initial release
[gnudebbugs.git] / src / gnudebbugs / __init__.py
1 # Copyright (C) 2021 Free Software Foundation, Inc.
2 #
3 # This program is free software: you can redistribute it and/or modify it under
4 # the terms of the GNU Lesser General Public License as published by the Free
5 # Software Foundation, either version 3 of the License, or at your option) any
6 # later version.
7 #
8 # This program is distributed in the hope that it will be useful, but WITHOUT
9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11 # details.
12 #
13 # You should have received a copy of the GNU Lesser General Public License
14 # along with this program. If not, see <https://www.gnu.org/licenses/>.
15
16 """Common module settings."""
17
18 __version__ = "0"
19 __homepage__ = 'https://savannah.gnu.org/projects/gnudebbugs'
20 __issue_tracker__ = 'https://savannah.gnu.org/support/?group=gnudebbugs'
21
22
23 class BaseError(Exception):
24 """Base error class for all errors in this project."""