-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "torch>=2.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mps-conv3d"
version = "0.2.1"
description = "3D Convolution for Apple Silicon (MPS)"
readme = "README.md"
license = "MIT"
authors = [{name = "mpsops"}]
requires-python = ">=3.10"
dependencies = ["torch>=2.0.0"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["pytorch", "mps", "apple-silicon", "conv3d", "video", "3d-convolution"]
[project.urls]
Homepage = "https://github.com/mpsops/mps-conv3d"
Repository = "https://github.com/mpsops/mps-conv3d"
Issues = "https://github.com/mpsops/mps-conv3d/issues"