-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.64 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
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "chisel4ml"
authors = [
{name = "Jure Vreca", email = "jure.vreca@ijs.si"}
]
description = "A Chisel based hardware generation library for deeply quantized neural networks."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent"
]
keywords = ["Chisel", "FPGA", "quantized neural networks"]
dynamic=["version"]
dependencies = [
"qonnx",
"onnxoptimizer",
"ortools",
"grpcio>1.0.0",
]
[tool.setuptools.dynamic]
version = {attr = "chisel4ml.__version__"}
[tool.setuptools_scm]
version_file = "chisel4ml/_version.py"
git_describe_command = "git describe --tags"
[project.optional-dependencies]
dev = [
"tox<4",
"tox-run-before",
"pytest<8",
"pytest-xdist",
"grpcio-tools",
"pre-commit",
"brevitas",
]
audio = [
"tensorflow-datasets",
"librosa",
]
[project.urls]
Repository = "https://github.com/cs-jsi/chisel4ml"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ['.']
include = ['chisel4ml*']
exclude = ['chisel4ml.tests']
namespaces = false
[tool.pytest.ini_options]
addopts = ""
filterwarnings = ["ignore:::.*flatbuffers*", "ignore:::.*tensorflow*"]
testpaths = [
"tests",
]
[tool.flake8]
extend-ignore = ["E203", "E704"]
max-line-length = 88
count= true
exclude=[
"venv",
"chisel4ml/bin/",
"chisel4ml/lbir"
]