forked from pytorch/torchft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 849 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "torchft"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"torch"
]
[project.urls]
Documentation = "https://pytorch-labs.github.io/torchft"
Repository = "https://github.com/pytorch-labs/torchft"
Issues = "https://github.com/pytorch-labs/torchft/issues"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"pyre-check",
"parameterized"
]
[tool.maturin]
features = ["pyo3/extension-module"]
[project.scripts]
torchft_lighthouse = "torchft.torchft:lighthouse_main"
[tool.isort]
multi_line_output = 3
combine_as_imports = true