[add] Init

This commit is contained in:
2025-08-27 16:08:39 -07:00
commit d274b10e79
5 changed files with 546 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[tool.poetry]
name = "github-issues-md"
version = "0.1.0"
description = "Download GitHub issues and compile them into a markdown file"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
packages = [{include = "github_issues_md"}]
[tool.poetry.dependencies]
python = "^3.8"
typer = {extras = ["all"], version = "^0.12.3"}
tiktoken = "^0.7.0"
requests = "^2.31.0"
[tool.poetry.scripts]
github-issues-md = "github_issues_md.main:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
black = "^23.0.0"
isort = "^5.12.0"