metafraster 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.14
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.5
2
+ Name: metafraster
3
+ Version: 0.0.1
4
+ Summary: Self-hosted translation workspace with local LLM inference. Placeholder - full release coming.
5
+ Author: Nikolaos Papagrigoriou
6
+ License: MIT
7
+ Requires-Python: >=3.14
8
+ Description-Content-Type: text/markdown
9
+
10
+ Self-hosted translation workspace with local LLM inference
11
+
12
+ Placeholder - full release coming.
@@ -0,0 +1,3 @@
1
+ Self-hosted translation workspace with local LLM inference
2
+
3
+ Placeholder - full release coming.
@@ -0,0 +1,9 @@
1
+ __version__ = "0.0.1"
2
+
3
+
4
+ def main():
5
+ print("Hello from metafraster! Placeholder - full release coming!")
6
+
7
+
8
+ if __name__ == "__main__":
9
+ main()
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "metafraster"
3
+ version = "0.0.1"
4
+ description = "Self-hosted translation workspace with local LLM inference. Placeholder - full release coming."
5
+ readme = "README.md"
6
+ requires-python = ">=3.14"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "Nikolaos Papagrigoriou" }]
9
+ dependencies = []
10
+
11
+ [build-system]
12
+ requires = ["hatchling"]
13
+ build-backend = "hatchling.build"
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"