-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1006 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "parq"
dependencies = [
"torch>=2.0.0",
"torchvision",
"timm==0.9.2",
"h5py",
]
requires-python = ">=3.9"
authors = [
{name = "Lin Xiao", email = "[email protected]"},
{name = "Lisa Jin", email = "[email protected]"},
]
description = "A native PyTorch library for quantization-aware training"
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["quantization", "proximal gradient method", "regularization"]
[project.optional-dependencies]
dev = [
"tensorboard",
"matplotlib",
"flake8",
"black",
]
[project.urls]
GitHub = "https://github.com/facebookresearch/parq"
[tool.setuptools.packages.find]
where = [""]
include = ["parq*", "recipes*"]
[tool.setuptools_scm]
[tool.black]
target-version = ["py39"]
[tool.flake8]
max-line-length = 88
exclude = [".git", "__pycache__", "build"]
extend-ignore = ["E203"]