-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
[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",
"pytest-timeout",
"black",
"pyre-check",
"parameterized",
"expecttest",
"numpy",
"torchx"
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "torchft._torchft"
[project.scripts]
torchft_lighthouse = "torchft._torchft:lighthouse_main"
[tool.isort]
multi_line_output = 3
combine_as_imports = true
[tool.pytest.ini_options]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_level = "INFO"
timeout = 60
timeout_method = "thread"