-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
40 lines (36 loc) · 942 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8.0", "wheel", "torch>=1.7", "numpy>=1.18", "opt_einsum", "ninja", "scipy>=0.16"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["torchtt"]
#[tool.setuptools.package-data]
#torchtt = ["cpp/*"]
[project]
name = "torchTT"
version = "0.3"
description = "Tensor-Train decomposition in pytorch."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"torch>=1.7",
"numpy>=1.18",
"opt_einsum",
"scipy>=0.16",
"ninja"
]
license = {file = "LICENSE"}
authors = [
{ name = "Ion Gabriel Ion", email = "ion.ion.gabriel@gmail.com" }
]
keywords = ["pytorch", "tensor-train decomposition"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]