We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb323e commit ea96306Copy full SHA for ea96306
4 files changed
app/__init__.py
app/main.py
@@ -0,0 +1,6 @@
1
+def main() -> None:
2
+ print("Hello, World!")
3
+
4
5
+if __name__ == "__main__":
6
+ main()
pyproject.toml
@@ -88,6 +88,11 @@ homepage = "https://github.com/EO-DataHub/"
88
repository = "CHANGEME-https://github.com/EO-DataHub/<CHANGEME>"
89
changelog = "CHANGEME-https://github.com/EO-DataHub/<CHANGEME>/main/CHANGELOG.md"
90
91
92
+[tool.uv]
93
+# see https://docs.astral.sh/uv/concepts/projects/config/#project-packaging to see if you need to set this to true
94
+package = false
95
96
[build-system]
97
requires = ["hatchling"]
98
build-backend = "hatchling.build"
tests/test_package.py
@@ -1,2 +1,2 @@
-def test__success():
+def test__success() -> None:
assert True
0 commit comments