-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
130 lines (112 loc) · 3.25 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
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
126
127
128
129
130
[tool.poetry]
name = "cldk"
version = "0.5.0-dev"
description = "The official Python SDK for Codellm-Devkit."
authors = ["Rahul Krishna <[email protected]>", "Rangeet Pan <[email protected]>", "Saurabh Sinhas <[email protected]>",
"Raju Pavuluri <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://codellm-devkit.info"
repository = "https://github.com/codellm-devkit/python-sdk"
keywords = ["ibm", "llm", "large language models", "code analyzer", "syntax tree"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
include = [
"LICENSE",
"cldk/analysis/java/codeanalyzer/jar/*.jar"
]
[tool.poetry.dependencies]
python = ">=3.11"
pydantic = "^2.10.6"
pandas = "^2.2.3"
networkx = "^3.4.2"
pyarrow = "19.0.0"
tree-sitter = "0.24.0"
rich = "13.9.4"
wget = "3.2"
requests = "^2.32.3"
tree-sitter-java = "0.23.5"
tree-sitter-c = "0.23.5"
tree-sitter-go = "0.23.4"
tree-sitter-python = "0.23.6"
tree-sitter-javascript = "0.23.1"
libclang = "^18.1.1"
clang = "^17.0.6"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "^8.32.0"
[tool.poetry.group.test.dependencies]
# Test dependencies
toml = "^0.10.2"
pytest = "8.3.4"
pytest-pspec = "^0.0.4"
pytest-cov = "^6.0.0"
pylint = "^3.3.4"
flake8 = "^7.1.1"
black = "^25.1.0"
coverage = "^7.6.10"
jupyter = "^1.1.1"
[tool.poetry.group.doc.dependencies]
mkdocs-material = {extras = ["imaging"], version = "^9.6.3"}
mkdocs-autorefs = "^1.3.1"
mkdocs-get-deps = "^0.2.0"
mkdocs-material-extensions = "^1.3.1"
mkdocstrings = "^0.28.0"
mkdocstrings-python = "^1.15.0"
mkdocs-git-revision-date-localized-plugin = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
########################################
# Tool configurations
########################################
[tool.flake8]
max-line-length = 180
count = true
[tool.black]
line-length = 180
[tool.pylint.'MESSAGES CONTROL']
disable = "no-member,protected-access,global-statement"
[tool.pylint.FORMAT]
max-line-length = 180
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--pspec --cov=cldk --cov-fail-under=50"
testpaths = ["tests"]
[tool.coverage.run]
source = ["cldk"]
omit = [
"venv/*",
".venv/*"
]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"pragma: no branch",
"pass",
"subprocess.CalledProcessError",
"sys.exit",
"if __name__ == .__main__.:"
]
ignore_errors = true
[tool.coverage.xml]
output="./coverage.xml"
[tool.coverage.html]
title = "Test Coverage Report"
directory = "coverage_html_report"
[tool.cldk.testing]
sample-application = "tests/resources/java/application/"
sample-application-analysis-json = "tests/resources/java/analysis_json/"
codeanalyzer-jar-path = "tests/resources/java/codeanalyzer_jars/"