-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.34 KB
/
pyproject.toml
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
[tool.poetry]
name = "hephai-pr-doctor"
version = "1.0.0"
description = "AI-powered GitHub Action for PR reviews, automated testing, and test generation."
authors = ["FOX Techniques <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/fox-techniques/hephai-pr-doctor"
homepage = "https://github.com/fox-techniques/hephai-pr-doctor"
keywords = ["github-action", "AI", "PR review", "code quality", "test generation"]
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.2.3" # AI-powered test case suggestions
pytest = "^7.4.0" # Unit testing framework
pytest-cov = "^4.1.0" # Test coverage reporting
hypothesis = "^6.82.0" # Property-based testing
flake8 = "^6.0.0" # Linting
mypy = "^1.5.1" # Static type checking
mutmut = "^2.4.0" # Mutation testing
requests = "^2.31.0" # GitHub API interactions
coloredlogs = "^15.0.1"
python-json-logger = "^3.2.1"
python-dotenv = "^1.0.1"
[tool.poetry.dev-dependencies]
black = "^24.3.0" # Code formatter
isort = "^5.12.0" # Imports sorting
pre-commit = "^3.5.0" # Pre-commit hooks
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov=hephai_pr_doctor --cov-report=term-missing"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"