-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
65 lines (54 loc) · 1.67 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
[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
[project]
name = "stream-dse"
version = "0.0.8"
description = "Stream - Multi-core accelerator design space exploration with layer-fused scheduling"
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 = ["stream", "multi-core", "accelerator", "layer-fused", "scheduling", "zigzag", "dse", "design-space-exploration", "machine-learning", "deep-learning", "mapping"]
dependencies = [
'zigzag-dse',
'rtree',
'deap',
'brokenaxes',
'plotly',
'pandas',
'gurobipy',
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "build", "twine", "pre-commit"]
[project.urls]
Homepage = "https://github.com/ZigZag-Project/stream"
[project.scripts]
realpython = "stream.__main__:main"
[tool.bumpver]
current_version = "0.0.8"
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}"'
]
"stream/__init__.py" = ["{version}"]
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120