diff --git a/.gitignore b/.gitignore index 83a43fd..b125734 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,6 @@ docs/_build # Mypy Cache .mypy_cache/ + +# Hand-made Ignores +local_settings.py \ No newline at end of file diff --git a/src/pasteme_cli/constants.py b/src/pasteme_cli/constants.py index 6d64bb7..34b3e7d 100644 --- a/src/pasteme_cli/constants.py +++ b/src/pasteme_cli/constants.py @@ -33,4 +33,10 @@ EPILOG_DESCRIPTION = '''Use --start (-s) and/or --end (-e) to select a range of lines from the source code to be pasted. Author -> Sadra Yahyapour (mailto:lnxpylnxpy@gmail.com) -GitHub -> https://github.com/collove/pasteme-cli''' \ No newline at end of file +GitHub -> https://github.com/collove/pasteme-cli''' + + +try: + from .local_settings import * +except: + pass \ No newline at end of file