-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.04 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "memsave_torch"
version = "1.0.0"
dependencies = [
"torch",
"torchvision",
"pandas",
"tqdm"
]
requires-python = ">=3.8"
authors = [
{name = "Samarth Bhatia", email = "[email protected]"},
{name = "Felix Dangel", email="[email protected]"},
]
description = "Saving Memory in PyTorch"
readme = "README.md"
keywords = ["PyTorch", "Deep Learning", "Memory Efficient", "Memory Saving", "torch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License"
]
[project.urls]
Repository = "https://github.com/plutonium-239/memsave_torch"
[project.optional-dependencies]
test = [
'coveralls',
'pytest',
'pytest-cov',
'pytest-optional-tests',
"transformers"
]
exp = [
"codetiming",
"memory_profiler",
"transformers>=4.41"
]
[tool.pytest.ini_options]
markers = [
"quick: marks tests as quick (only run on make test or using pytest -m quick)",
]