diff --git a/ruff.toml b/ruff.toml index 77e8b76..317a9a2 100644 --- a/ruff.toml +++ b/ruff.toml @@ -7,6 +7,7 @@ lint.ignore = [ 'Q003', 'D205', # Format conflict 'TCH', # Microoptimization at the cost of readability + 'TID252', # I like relative imports 'D407', 'D413', # Weird documentation stuff diff --git a/setup.py b/setup.py index 0bb14da..4596683 100644 --- a/setup.py +++ b/setup.py @@ -142,6 +142,7 @@ with open(PACKAGE_NAME + '/_version.py') as f: REQUIREMENTS_MAIN = [ + 'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git', 'fin_defs @ git+https://gitfub.space/Jmaa/fin-defs.git', 'fin_depo @ git+https://gitfub.space/Jmaa/fin-depo.git', ]