mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
add version information in __init__.py and import them from setup.py
and conf.py
This commit is contained in:
parent
4714276e2c
commit
74c2449d8f
3 changed files with 9 additions and 5 deletions
|
|
@ -11,7 +11,9 @@ from pelican.utils import clean_output_dir, files_changed
|
|||
from pelican.writers import Writer
|
||||
from pelican import log
|
||||
|
||||
__version__ = "3.0"
|
||||
__major__ = 3
|
||||
__minor__ = 0
|
||||
__version__ = "{0}.{1}".format(__major__, __minor__)
|
||||
|
||||
|
||||
class Pelican(object):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue