mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
Old helpers are completely broken for reST, Google and NumPy docstring formats. (cherry picked from commit 9ce7f986164ca7a61710eefab38934837a36f00b) IJ-CR-16877 GitOrigin-RevId: 34f27150854279ba98afb8bb23711e8a62fa58c0
11 lines
322 B
Python
11 lines
322 B
Python
# Package versioning solution originally found here:
|
|
# http://stackoverflow.com/q/458550
|
|
|
|
__all__ = ["__version__"]
|
|
|
|
# Store the version here so:
|
|
# 1) we don't load dependencies by storing it in __init__.py
|
|
# 2) we can import it in setup.py for the same reason
|
|
# 3) we can import it into your module
|
|
__version__ = "0.9.1"
|