We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00dc02 commit b3c90b5Copy full SHA for b3c90b5
2 files changed
pyproject.toml
@@ -22,4 +22,7 @@ requires-python = ">=3.10"
22
23
[project.urls]
24
Homepage = "https://github.com/bialimed/anacore-utils"
25
-Repository = "https://github.com/bialimed/anacore-utils"
+Repository = "https://github.com/bialimed/anacore-utils"
26
+
27
+[tool.setuptools]
28
+packages = []
setup.py
@@ -20,11 +20,10 @@ def load_scripts(path):
20
filepath = os.path.join(path, filename)
21
if os.path.isdir(filepath):
if filename != "test":
- load_scripts(filepath)
+ scripts += load_scripts(filepath)
else:
if filename.endswith(".py") and not filename.startswith("__"):
scripts.append(filepath)
- print(scripts)
return scripts
29
30
0 commit comments