Skip to content

Commit 6a730a1

Browse files
committed
refactor: organize dunder metadata
1 parent 9a4b6b0 commit 6a730a1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

DynamicVector/DynamicVector.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
from ._metadata import (
55
__version__,
66
__author__,
7+
__credits__,
8+
__maintainer__,
79
__email__,
810
__license__,
911
__status__,
10-
__maintainer__,
11-
__credits__,
1212
__url__,
1313
__description__,
1414
__copyright__,
@@ -18,11 +18,11 @@
1818
from _metadata import (
1919
__version__,
2020
__author__,
21+
__credits__,
22+
__maintainer__,
2123
__email__,
2224
__license__,
2325
__status__,
24-
__maintainer__,
25-
__credits__,
2626
__url__,
2727
__description__,
2828
__copyright__,
@@ -31,14 +31,14 @@
3131
# _metadata.py failed to load,
3232
# fill in with dummy values (script may be standalone)
3333
__version__ = "Failed to load from _metadata.py"
34-
__author__ = __version__
35-
__email__ = __version__
36-
__license__ = __version__
34+
__author__ = "Scott E. Boyce"
35+
__credits__ = "Scott E. Boyce"
36+
__maintainer__ = "Scott E. Boyce"
37+
__email__ = "boyce@engineer.com"
38+
__license__ = "MIT"
3739
__status__ = __version__
38-
__maintainer__ = __version__
39-
__credits__ = __version__
40-
__url__ = __version__
41-
__description__ = __version__
40+
__url__ = "https://github.com/ScottBoyce-Python/DynamicVector"
41+
__description__ = "A dynamic vector implementation using NumPy arrays, with dynamic resizing capabilities, fast appending and popping,"
4242
__copyright__ = __version__
4343

4444
# %% --------------------------------------------------------------------------

0 commit comments

Comments
 (0)