mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
11 lines
284 B
Python
11 lines
284 B
Python
from pathlib import Path
|
|
|
|
import django_fmd_ynh
|
|
from bx_py_utils.path import assert_is_file
|
|
|
|
|
|
PACKAGE_ROOT = Path(django_fmd_ynh.__file__).parent.parent
|
|
assert_is_file(PACKAGE_ROOT / 'pyproject.toml')
|
|
|
|
|
|
CLI_EPILOG = 'Project Homepage: https://github.com/YunoHost-Apps/django-fmd_ynh'
|