Skip to content

Commit 093d844

Browse files
committed
Provide more meta data in bpython and bpdb modules
1 parent ef52672 commit 093d844

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

bpdb/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The MIT License
22
#
33
# Copyright (c) 2008 Bob Farrell
4-
# Copyright (c) 2013 Sebastian Ramacher
4+
# Copyright (c) 2013-2020 Sebastian Ramacher
55
#
66
# Permission is hereby granted, free of charge, to any person obtaining a copy
77
# of this software and associated documentation files (the "Software"), to deal
@@ -30,6 +30,9 @@
3030
from optparse import OptionParser
3131
from pdb import Restart
3232

33+
__author__ = bpython.__author__
34+
__copyright__ = bpython.__copyright__
35+
__license__ = bpython.__license__
3336
__version__ = bpython.__version__
3437

3538

bpython/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,18 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222

23-
2423
import os.path
2524

2625
try:
2726
from ._version import __version__ as version
2827
except ImportError:
2928
version = "unknown"
3029

30+
__author__ = (
31+
"Bob Farrell, Andreas Stuehrk, Sebastian Ramacher, Thomas Ballinger, et al."
32+
)
33+
__copyright__ = f"(C) 2008-2020 {__author__}"
34+
__license__ = "MIT"
3135
__version__ = version
3236
package_dir = os.path.abspath(os.path.dirname(__file__))
3337

0 commit comments

Comments
 (0)