-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
83 lines (70 loc) · 2.01 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
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["."] # ["."] by default
include = ["*"] # ["*"] by default
exclude = ["inputs*", "outputs*", "docs*"]
namespaces = true # true by default
[tool.setuptools.package-data]
"zigzag" = ["py.typed"]
[project]
name = "zigzag-dse"
version = "3.8.0"
description = "ZigZag - Deep Learning Hardware Design Space Exploration"
readme = "README.md"
authors = [{ name = "Arne Symons", email = "[email protected]" }, { name = "Linyan Mei", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
]
keywords = ["zigzag", "dse", "design-space-exploration", "machine-learning", "deep-learning", "mapping"]
dependencies = [
'numpy',
'networkx',
'sympy',
'matplotlib',
'onnx',
'tqdm',
'multiprocessing_on_dill',
'pyyaml',
'cerberus',
'seaborn',
'typeguard',
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "build", "twine", 'pytest', 'pre-commit']
[project.urls]
Homepage = "https://github.com/KULeuven-MICAS/zigzag"
[project.scripts]
realpython = "zigzag.__main__:main"
[tool.bumpver]
current_version = "3.8.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"zigzag/__init__.py" = ["{version}"]
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[tool.pyright]
include = ["zigzag"]
typeCheckingMode="strict"
pythonVersion = "3.11"
stubPath = "./stubs/stubs"
useLibraryCodeForTypes = true
reportInvalidTypeForm = "none"
reportMissingModuleSource = "none"
reportMissingImports = "none"
reportAttributeAccessIssue ="none" # False positives for some packages