initializing python project and task file standard starter stuff
Browse files- .python-version +1 -0
- README.md +0 -0
- Taskfile.yml +12 -0
- main.py +6 -0
- pyproject.toml +27 -0
- uv.lock +0 -0
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
README.md
ADDED
|
File without changes
|
Taskfile.yml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# https://taskfile.dev
|
| 2 |
+
|
| 3 |
+
version: '3'
|
| 4 |
+
|
| 5 |
+
vars:
|
| 6 |
+
GREETING: Hello, World!
|
| 7 |
+
|
| 8 |
+
tasks:
|
| 9 |
+
default:
|
| 10 |
+
cmds:
|
| 11 |
+
- echo "{{.GREETING}}"
|
| 12 |
+
silent: true
|
main.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def main():
|
| 2 |
+
print("Hello from mnemozyn-entity-continuum!")
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
if __name__ == "__main__":
|
| 6 |
+
main()
|
pyproject.toml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "mnemozyn-entity-continuum"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = []
|
| 8 |
+
|
| 9 |
+
[dependency-groups]
|
| 10 |
+
dev = [
|
| 11 |
+
"astropy>=7.2.0",
|
| 12 |
+
"chromadb>=1.5.2",
|
| 13 |
+
"docker>=7.1.0",
|
| 14 |
+
"huggingface-hub>=1.5.0",
|
| 15 |
+
"langchain>=1.2.10",
|
| 16 |
+
"langchain-chroma>=1.1.0",
|
| 17 |
+
"langchain-huggingface>=1.2.1",
|
| 18 |
+
"langchain-ollama>=1.0.1",
|
| 19 |
+
"langchain-openai>=1.1.10",
|
| 20 |
+
"litellm[proxy]>=1.82.0",
|
| 21 |
+
"llama-cpp-python>=0.3.16",
|
| 22 |
+
"marimo>=0.20.4",
|
| 23 |
+
"notebook>=7.5.4",
|
| 24 |
+
"ollama>=0.6.1",
|
| 25 |
+
"pillow>=12.1.1",
|
| 26 |
+
"transformers>=5.2.0",
|
| 27 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|