-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (46 loc) · 1.45 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
[project]
name = "hlsfactory"
version = "1.0"
readme = "README.md"
license = { file = "LICENSE" }
description = "A Framework Empowering High-Level Synthesis Datasets for Machine Learning and Beyond"
authors = []
keywords = [
"High-Level Synthesis",
"FPGA",
"Electronic Design Automation",
"Dataset"
]
classifiers = []
requires-python = ">=3.10"
dependencies = [
"pandas",
"psutil",
"PyYAML",
"tqdm",
"python-dotenv",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-mock"]
docs = ["sphinx", "furo", "sphinx-autodoc-typehints", "myst-parser", "sphinx_rtd_theme", "sphinx-copybutton", "sphinxext-opengraph", "sphinx-autodoc2"]
[project.urls]
"Homepage" = "https://github.com/sharc-lab/HLSFactory"
"Repository" = "https://github.com/sharc-lab/HLSFactory"
"Documentation" = "https://github.com/sharc-lab/HLSFactory"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hlsfactory"]
[tool.setuptools.package-data]
hlsfactory = ["**", "**/*"]
[tool.setuptools.exclude-package-data]
hlsfactory = ["**/*.npy", "**/*.bin"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-s", "-v", "--cov=hlsfactory", "--cov-report=html"]
log_cli = true
[tool.ruff.lint]
unfixable = ["F401"]
select = ["ALL"]
ignore= ["EM102","TRY003", "T201", "S314", "EM101", "PGH003", "D", "ANN101", "ANN102", "FBT001", "FBT002", "PLR0913", "S101", "SIM108", "PLR0912", "PLR0915"]