-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "repo-guide"
version = "0.7.0"
description = "Use AI to generate guides to code repositories."
readme = "README.md"
authors = [{name = "James Stout"}]
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"bleach-allowlist>=1.0.3",
"bleach>=6.2.0",
"click",
"gitpython>=3.1.43",
"llm-gemini>=0.10",
"llm>=0.19a0",
"mkdocs-material>=9.5.46",
"mkdocs>=1.6.1",
"tqdm>=4.67.1",
"tiktoken>=0.8.0",
]
[project.optional-dependencies]
magika = [
"magika>=0.6.0rc3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/wolfmanstout/repo-guide"
Changelog = "https://github.com/wolfmanstout/repo-guide/releases"
Issues = "https://github.com/wolfmanstout/repo-guide/issues"
CI = "https://github.com/wolfmanstout/repo-guide/actions"
[project.scripts]
repo-guide = "repo_guide.cli:cli"
[dependency-groups]
dev = [
"pytest",
]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501", "SIM105", "SIM116", "UP007"]