-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.25 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wide_compiler"
version = "0.7.0"
description = "pytorch compilation for parallel wide models."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "AbstractPhil", email = "abstractpowered@outlook.com" }]
keywords = ["pytorch", "compiler", "parallel", "wide", "batched", "grouped", "torch.compile", "fx", "tracing"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy>=1.23",
"torch>=2.1"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"tabulate",
]
[project.urls]
Homepage = "https://huggingface.co/AbstractPhil"
Repository = "https://github.com/AbstractEyes/pytorch-parallel-compiler"
Issues = "https://github.com/AbstractEyes/pytorch-parallel-compiler/issues"
[project.scripts]
wide-compiler = "wide_compiler.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["wide_compiler*"]