26 lines
629 B
TOML
26 lines
629 B
TOML
[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"
|