-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "torch>=2.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mps-correlation"
version = "0.2.1"
description = "Correlation layer for optical flow on Apple Silicon (MPS)"
readme = "README.md"
license = "MIT"
authors = [
{name = "mpsops"}
]
keywords = ["correlation", "optical-flow", "raft", "pwc-net", "flownet", "apple-silicon", "pytorch", "mps", "metal"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
requires-python = ">=3.10"
dependencies = [
"torch>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/mpsops/mps-correlation"
Repository = "https://github.com/mpsops/mps-correlation"
Issues = "https://github.com/mpsops/mps-correlation/issues"
[tool.setuptools]
packages = ["mps_correlation"]
include-package-data = true