mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
11 lines
196 B
Python
11 lines
196 B
Python
from fishy import constants
|
|
|
|
|
|
# this prevents importing from package while setup
|
|
def main():
|
|
from fishy.__main__ import main as actual_main
|
|
actual_main()
|
|
|
|
|
|
__version__ = constants.version
|