-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (56 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "torchdetscan"
dynamic = ["version"]
description = "Find non-deterministic functions in pytorch code"
keywords = ["pytorch", "determinism", "non-determinism", "deterministic", "non-deterministic", "deterministic functions", "non-deterministic functions"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=1.6.0,<2.3",
"numpy<2.0",
"pandas",
"rich",
"scipy"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
authors = [
{name = "Mark Coletti", email = "[email protected]"},
{name = "Wael Elasif", email = "[email protected]"},
{name = "Gavin Wiggins", email = "[email protected]"},
{name = "Ada Sedova", email = "[email protected]"},
{name = "Sanjif Shanmugavelu"},
]
license = {file = "LICENSE.txt"}
maintainers = [
{name = "Mark Coletti", email = "[email protected]"},
{name = "Sanjif Shanmugavelu"}
]
[project.urls]
Repository = "https://github.com/minnervva/torchdetscan"
Issues = "https://github.com/minnervva/torchdetscan/issues"
[project.optional-dependencies]
dev = ["ruff", "pytest"]
[project.scripts]
torchdetscan = "torchdetscan.main:main"
[tool.pyright]
reportUnusedImport = true
reportUnusedVariable = true
[tool.ruff]
line-length = 100
[tool.hatch.version]
path = "src/torchdetscan/__version__.py"
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-cov"
]
[tool.hatch.envs.default]
installer = "uv"