Metadata-Version: 2.1
Name: arxivsummary
Version: 0.2
Summary: arxivsummary - Arxiv summary report generator. 
Author-email: Graham Wheeler <graham@grahamwheeler.com>
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Dist: openai==1.57.4
Requires-Dist: flit_core==3.9.0
Requires-Dist: click==8.1.7
Project-URL: Source, https://github.com/gramster/arxivsummary

# arxivsummary - Generate summary reports from arxiv

See CONTRIBUTING.md for build instructions, or install from PyPI with:

```
python -m pip install arxivsummary
```

Use `arxivsummary -h` for help.

For an example report, see https://github.com/gramster/arxivsummary/blob/main/example.md

The example was generated with:

    python -m arxivsummary report -T DBG -t ollama -v

using ollama running locally with the vanilj/Phi-4 model.

## Development

This project uses `flit`. First install `flit`:

```
python -m pip install flit
```

Then to build:

```
flit build
```

To install locally:

```
flit install
```

To publish to PyPI:

```
flit publish
```

## Version History

0.1 Initial release


