mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 19:18:21 +00:00
14 lines
229 B
Python
14 lines
229 B
Python
|
|
"""
|
||
|
|
An example project.
|
||
|
|
|
||
|
|
@added: exampleproj NEXT
|
||
|
|
"""
|
||
|
|
|
||
|
|
from incremental import Version
|
||
|
|
from ._version import __version__
|
||
|
|
|
||
|
|
__all__ = ["__version__"]
|
||
|
|
|
||
|
|
if Version("exampleproj", "NEXT", 0, 0) > __version__:
|
||
|
|
print("Unreleased!")
|