mirror of
https://github.com/nikdoof/django-eveigb.git
synced 2025-12-23 05:19:21 +00:00
Initial import
This commit is contained in:
10
eveigb/__init__.py
Normal file
10
eveigb/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
VERSION = (0, 1)
|
||||
|
||||
# Dynamically calculate the version based on VERSION tuple
|
||||
if len(VERSION)>2 and VERSION[2] is not None:
|
||||
str_version = "%d.%d_%s" % VERSION[:3]
|
||||
else:
|
||||
str_version = "%d.%d" % VERSION[:2]
|
||||
|
||||
__version__ = str_version
|
||||
VERSION = (0, 1)
|
||||
Reference in New Issue
Block a user