-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["traincheck", "traincheck.*"]
[project]
requires-python = ">= 3.10"
name = "traincheck"
version = "0.1.2"
description = "Training with Confidence: Catching Silent DL Training Bugs with Automated Proactive Checks"
authors = [
{ name = "Yuxuan Jiang", email = "jyuxuan@umich.edu" },
{ name = "Ziming Zhou", email = "zimingzh@umich.edu" },
{ name = "Boyu Xu", email = "xuboyu@umich.edu" },
{ name = "Beijie Liu", email = "kekeliu@umich.edu" },
{ name = "Yijun Wang", email = "yijunw@umich.edu" },
{ name = "Ryan Huang", email = "ryanph@umich.edu" },
]
maintainers = [
{name = "Yuxuan Jiang", email = "jyuxuan@umich.edu" },
]
dependencies = [
"astor",
"torch",
"tqdm",
"numba",
"pandas",
"polars",
"pyyaml",
"orjson",
"numpy"
]
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
Homepage = "https://github.com/OrderLab/TrainCheck"
[project.scripts]
traincheck-collect = "traincheck:collect_trace.main"
traincheck-infer = "traincheck:infer_engine.main"
traincheck-check = "traincheck:checker.main"
traincheck-onlinecheck = "traincheck:checker_online.main"