-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (40 loc) · 1.08 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torch-submit"
authors = [
{name = "Tony Francis", email = "[email protected]"},
]
description = "A tool for submitting and managing distributed PyTorch jobs"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["pytorch", "distributed", "job submission"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer",
"rich",
"pyyaml",
"fabric",
"sqlalchemy",
"psycopg2-binary",
"optuna",
"optuna-dashboard",
]
dynamic = ["version"]
[project.scripts]
torch-submit = "torch_submit.cli:app"
[tool.setuptools_scm]
write_to = "torch_submit/_version.py"
[tool.setuptools.packages.find]
where = ["."]
include = ["torch_submit*"]
exclude = ["tests*"]
[project.urls]
"Homepage" = "https://github.com/dream3d-ai/torch-submit"
"Bug Tracker" = "https://github.com/dream3d-ai/torch-submit/issues"