tenseleyflow/wulftp / a92f02f

Browse files

build changes post-refactor

Authored by espadonne
SHA
a92f02fcfa35c5e95d7b18537280e3886af82ad9
Parents
905b3e4
Tree
eed1beb

2 changed files

StatusFile+-
M pyproject.toml 4 1
A src/wulftp/__main__.py 4 0
pyproject.tomlmodified
@@ -16,3 +16,6 @@ dependencies = [
1616
 
1717
 [project.scripts]
1818
 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()