-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1015 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "pulldoc"
version = "0.2.2"
description = "Generate fix patterns & issue templates from PR history"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"PyGithub>=2.3",
"litellm>=1.36.0",
"typer>=0.12.3",
"pydantic>=2.7",
"pydantic-settings>=2.0",
"boto3>=1.38.31",
"tenacity>=9.1.2",
"google-generativeai>=0.8.5",
]
[project.urls]
"Homepage" = "https://github.com/ppspps824/pulldoc"
"Bug Tracker" = "https://github.com/ppspps824/pulldoc/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
]
[project.scripts]
pulldoc = "src.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "-q"