mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-23 11:56:36 +11:00
9 lines
217 B
Python
9 lines
217 B
Python
VERSION = (3, 0, 'a', 2)
|
|
|
|
__version__ = '{major}.{minor}{rest}'.format(
|
|
major=VERSION[0],
|
|
minor=VERSION[1],
|
|
rest=''.join(str(i) for i in VERSION[2:]),
|
|
)
|
|
|
|
default_app_config = 'dpaste.apps.dpasteAppConfig'
|