diff options
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | main.py | 6 | ||||
| -rw-r--r-- | pyproject.toml | 9 |
3 files changed, 19 insertions, 0 deletions
@@ -160,3 +160,7 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# uv +uv.lock +.python-version
\ No newline at end of file @@ -0,0 +1,6 @@ +def main(): + print("Hello from base-dataset!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..48b544f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "base-dataset" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "label-studio>=1.22.0", +] |
