-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 908 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 908 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "pgspd"
version = "1.0.2"
description = "Paper-Guided Semantic Program Decomposition"
requires-python = ">=3.11"
dependencies = [
"astroid>=3.0",
"FlagEmbedding>=1.2",
"hf-xet>=1.0",
"lxml>=5.0",
"networkx>=3.0",
"numpy>=1.26",
"openai>=1.0",
"pandas>=2.0",
"pycg>=0.0.8",
"pyan3>=1.1",
"pyarrow>=15.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"scikit-learn>=1.4",
"scipy>=1.12",
"sentencepiece>=0.2.0",
"sympy>=1.12",
"torch>=2.2",
"transformers>=4.40",
"tree-sitter>=0.23",
"tree-sitter-python>=0.23",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
[project.scripts]
pgspd = "pgspd.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["pgspd*"]
exclude = ["data*", "tests*"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"