-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 650 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 650 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
from setuptools import setup, find_packages
setup(
name="code-analyzer",
version="1.0.0",
packages=find_packages(),
install_requires=[
"tree-sitter>=0.20.0",
"tree-sitter-python>=0.20.0",
"tree-sitter-javascript>=0.20.0",
"tree-sitter-java>=0.20.0",
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"networkx>=3.0",
"pyvis>=0.3.0",
"plotly>=5.0.0",
"click>=8.0.0",
"numpy>=1.21.0",
"pandas>=1.3.0",
"tqdm>=4.60.0"
],
entry_points={
"console_scripts": [
"qa-agent=src.cli:main",
],
},
)