-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (113 loc) · 2.9 KB
/
pyproject.toml
File metadata and controls
126 lines (113 loc) · 2.9 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "codeviewx"
version = "0.2.8"
description = "AI-powered code documentation generator based on DeepAgents and LangChain"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "CodeViewX Team"}
]
keywords = [
"documentation",
"ai",
"code-analysis",
"deepagents",
"langchain",
"code-documentation",
"document-generation"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Console",
]
dependencies = [
"anthropic==0.70.0",
"deepagents==0.0.5",
"langchain==0.3.27",
"langchain-anthropic==0.3.22",
"langchain-core==0.3.79",
"langchain-text-splitters==0.3.11",
"langgraph==0.6.10",
"langgraph-checkpoint==2.1.2",
"langgraph-prebuilt==0.6.4",
"langgraph-sdk==0.2.9",
"langsmith==0.4.34",
"Pygments==2.19.2",
"PyYAML==6.0.3",
"requests==2.32.5",
"requests-toolbelt==1.0.0",
"ripgrepy==2.2.0",
"flask>=2.0.0",
"markdown>=3.4.0",
"pymdown-extensions>=10.5",
]
[project.optional-dependencies]
dev = [
"pytest==8.4.2",
"pytest-cov>=4.0",
"black>=23.0",
"flake8>=6.0",
"mypy>=1.0",
"isort>=5.0",
"build>=0.10.0",
"twine>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/dean2021/codeviewx"
Documentation = "https://github.com/dean2021/codeviewx/tree/main/docs"
Repository = "https://github.com/dean2021/codeviewx"
"Bug Tracker" = "https://github.com/dean2021/codeviewx/issues"
[project.scripts]
codeviewx = "codeviewx.cli:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["codeviewx*"]
exclude = ["tests*", "docs*", "examples*", "tools", "prompt"]
[tool.setuptools.package-data]
codeviewx = [
"prompts/*.md",
"tpl/*.html",
"static/**/*"
]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v"