Metadata-Version: 2.1
Name: daily-summary
Version: 0.1.10
Summary: A package to generate daily development reports
Home-page: https://github.com/jdriscoll98/daily-summary
Author: Jack Driscoll
Author-email: jackdriscoll777@gmail.com
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai
Requires-Dist: gitpython
Requires-Dist: python-dotenv
Requires-Dist: twine

# daily-summary

Generate a summary of your commit history for the day.

## Usage:
export OPENAI_API_KEY=your-api-key

daily-summary --repo relative/path/to/your/repo --author "Author Name" --model <model-name>

--model is an optional argument that specifies the OpenAI model to be used. Defaults to "gpt-4" if not provided.
--date is optional but lets you create reports for different dates than today
  
  "Author Name" should match your git commit author name

## Publishing:

To publish a new version of the package, simply run the following command:
```
python3 publish.py
```
This script updates the package version, builds the package, and publishes it to PyPi using the credentials set in your environment variables.
