forked from NVlabs/SOLAR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (60 loc) · 1.81 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
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "solar"
version = "1.1.0"
description = "PyTorch model graph analysis and einsum optimization toolkit with LLM support"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.8"
authors = [
{ name = "Solar Team", email = "solar@example.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
# Must match requirements.txt
dependencies = [
"torch>=2.0.0",
"torchview>=0.2.6",
"networkx>=3.0",
"pyyaml>=6.0",
"numpy>=1.24.0",
"matplotlib>=3.5.0",
"scipy>=1.10.0",
"pandas>=1.5.0",
"einops>=0.6.0",
"huggingface-hub>=0.16.0",
"safetensors>=0.3.0",
"openai>=1.0.0",
"graphviz>=0.20",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"pylint>=2.17.0",
"mypy>=1.0.0",
]
[project.scripts]
solar-process = "solar.cli.process:main"
solar-process-model = "solar.cli.process_model:main"
solar-toeinsum = "solar.cli.toeinsum:main"
solar-toeinsum-model = "solar.cli.toeinsum_model:main"
solar-analyze-model = "solar.cli.analyze_model:main"
solar-predict-perf-model = "solar.cli.predict_perf_model:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["solar*"]