build changes post-refactor
- SHA
a92f02fcfa35c5e95d7b18537280e3886af82ad9- Parents
-
905b3e4 - Tree
eed1beb
a92f02f
a92f02fcfa35c5e95d7b18537280e3886af82ad9905b3e4
eed1beb| Status | File | + | - |
|---|---|---|---|
| M |
pyproject.toml
|
4 | 1 |
| A |
src/wulftp/__main__.py
|
4 | 0 |
pyproject.tomlmodified@@ -15,4 +15,7 @@ dependencies = [ | ||
| 15 | 15 | ] |
| 16 | 16 | |
| 17 | 17 | [project.scripts] |
| 18 | -wulFTP = "wulftp:main" | |
| 18 | +wulFTP = "wulftp:main" | |
| 19 | + | |
| 20 | +[tool.setuptools.packages.find] | |
| 21 | +where = ["src"] | |
src/wulftp/__main__.pyadded@@ -0,0 +1,4 @@ | ||
| 1 | +from . import main | |
| 2 | + | |
| 3 | +if __name__ == "__main__": | |
| 4 | + main() | |