vitae 1.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vitae/__init__.py +26 -0
- vitae/data/bibs.bib +10415 -0
- vitae/readme.rst +184 -0
- vitae/vitae.py +533 -0
- vitae-1.2.1.dist-info/METADATA +199 -0
- vitae-1.2.1.dist-info/RECORD +8 -0
- vitae-1.2.1.dist-info/WHEEL +4 -0
- vitae-1.2.1.dist-info/licenses/LICENSE +29 -0
vitae/__init__.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from .vitae import *
|
|
2
|
+
|
|
3
|
+
"""Vitae
|
|
4
|
+
|
|
5
|
+
A set of tools for academics regularly needing updated CVs.
|
|
6
|
+
Joseph C. Slater
|
|
7
|
+
|
|
8
|
+
`import vitae`
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__title__ = 'vitae'
|
|
12
|
+
__version__ = '1.2.1'
|
|
13
|
+
__author__ = u'Joseph C. Slater'
|
|
14
|
+
__license__ = 'BSD3'
|
|
15
|
+
__copyright__ = 'Copyright 2018 Joseph C. Slater'
|
|
16
|
+
__all__ = ['vitae',
|
|
17
|
+
'__version__']
|
|
18
|
+
|
|
19
|
+
"""
|
|
20
|
+
If the __all__ above is commented out, this code will then execute to
|
|
21
|
+
completion, as the default behaviour of import * is to import all symbols
|
|
22
|
+
that do not begin with an underscore, from the given namespace.
|
|
23
|
+
|
|
24
|
+
Reference:
|
|
25
|
+
https://docs.python.org/3.5/tutorial/modules.html#importing-from-a-package
|
|
26
|
+
"""
|