[add] Init
This commit is contained in:
25
pyproject.toml
Normal file
25
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user