-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "scientific-writer"
version = "2.12.1"
description = "Deep research and writing tool - combines AI-driven deep research with well-formatted written outputs. Generates publication-ready scientific documents with verified citations."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"claude-agent-sdk>=0.1.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"pymupdf>=1.24.0",
]
# System Dependencies (must be installed separately):
#
# LaTeX Distribution (required for PDF compilation):
# - macOS: MacTeX (https://www.tug.org/mactex/) or BasicTeX
# Install: brew install --cask mactex-no-gui
# - Linux: TeX Live
# Install: sudo apt-get install texlive-full (Ubuntu/Debian)
# sudo dnf install texlive-scheme-full (Fedora)
# - Windows: MiKTeX (https://miktex.org/) or TeX Live
#
# Required LaTeX packages (usually included in full distributions):
# - pdflatex, bibtex, latexmk
# - Common packages: amsmath, graphicx, hyperref, natbib, geometry
#
# PDF to Image Conversion:
# PyMuPDF is included as a dependency - no external software needed!
# PDF to image conversion works out of the box.
#
# Optional but recommended:
# - Ghostscript (for PDF manipulation)
# - ImageMagick (for image processing)
[project.scripts]
scientific-writer = "scientific_writer.cli:cli_main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scientific_writer"]
[tool.uv]
dev-dependencies = []