-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 1.03 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graph-analysis"
version = "0.1.0"
description = "A tool for analyzing graph structures and relationships"
readme = "README.md"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.12"
dependencies = [
"networkx>=2.6.0",
"matplotlib>=3.4.0",
"numpy>=1.20.0",
"openai>=1.0.0",
"scikit-learn>=1.0.0",
"tqdm",
"pandas",
"torch==2.7.0",
"transformers>=4.30.0",
"accelerate>=0.20.0",
"huggingface-hub>=0.15.0",
"tokenizers>=0.13.0",
"seaborn>=0.11.0",
"plotly>=5.0.0",
"psutil>=5.8.0",
"GPUtil>=1.4.0",
"vllm>=0.9.1",
"bitsandbytes>=0.46.0",
"textalloc>=1.1.8",
"adjustText>=1.3.0",
]