mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
12 lines
247 B
Python
12 lines
247 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
|
|
# this prevents importing from package while setup
|
|
def main():
|
|
from fishy.__main__ import main as actual_main
|
|
actual_main()
|
|
|
|
|
|
__version__ = (Path(os.path.dirname(__file__)) / "version.txt").read_text()
|