faircopy 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,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: faircopy
3
+ Version: 0.0.1
4
+ Summary: Turn LLM markdown into polished documents — Word docs and PDFs with real equations. Coming soon.
5
+ Project-URL: Homepage, https://github.com/VaishJadhavVJ/faircopy
6
+ Author: Vaishnavi Jadhav
7
+ License: MIT
8
+ Keywords: chatgpt,claude,converter,docx,llm,markdown,markitdown,pdf
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Text Processing :: Markup :: Markdown
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # faircopy
19
+
20
+ **Turn LLM markdown into polished documents.**
21
+
22
+ Microsoft's markitdown converts your documents *into* markdown for LLMs.
23
+ faircopy converts it back *out* — into Word docs and PDFs with real, editable equations, proper tables, and clean styling.
24
+
25
+ > A "fair copy" is the final, neat version of a manuscript, written out clean after all the messy drafting. That's what this tool makes from your AI output.
26
+
27
+ 🚧 **This is a placeholder release. v0.1 is in active development.**
28
+
29
+ Follow along: https://github.com/VaishJadhavVJ/faircopy
@@ -0,0 +1,12 @@
1
+ # faircopy
2
+
3
+ **Turn LLM markdown into polished documents.**
4
+
5
+ Microsoft's markitdown converts your documents *into* markdown for LLMs.
6
+ faircopy converts it back *out* — into Word docs and PDFs with real, editable equations, proper tables, and clean styling.
7
+
8
+ > A "fair copy" is the final, neat version of a manuscript, written out clean after all the messy drafting. That's what this tool makes from your AI output.
9
+
10
+ 🚧 **This is a placeholder release. v0.1 is in active development.**
11
+
12
+ Follow along: https://github.com/VaishJadhavVJ/faircopy
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "faircopy"
7
+ version = "0.0.1"
8
+ description = "Turn LLM markdown into polished documents — Word docs and PDFs with real equations. Coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Vaishnavi Jadhav" }]
13
+ keywords = ["markdown", "docx", "pdf", "llm", "chatgpt", "claude", "converter", "markitdown"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "Intended Audience :: Education",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Text Processing :: Markup :: Markdown",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/VaishJadhavVJ/faircopy"
@@ -0,0 +1,3 @@
1
+ """faircopy — turn LLM markdown into polished documents. Placeholder release."""
2
+
3
+ __version__ = "0.0.1"