Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ chs-sw:

vsim-compile:
stage: build
extends:
- .cache-deps
- .init-env
needs:
- generate-rtl
variables:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variables:
key:
files:
- Bender.lock
- requirements.txt
- pyproject.toml
paths:
- .bender
- .cache/pip
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ python-venv: .venv
.venv:
$(BASE_PYTHON) -m venv $@
. $@/bin/activate && \
python -m pip install --upgrade pip setuptools && \
python -m pip install --cache-dir $(PIP_CACHE_DIR) -r requirements.txt && \
python -m pip install --cache-dir $(PIP_CACHE_DIR) . && \
python -m pip install --cache-dir $(PIP_CACHE_DIR) $(shell $(BENDER) path floo_noc) --no-deps && \
python -m pip install --cache-dir $(PIP_CACHE_DIR) "$(shell $(BENDER) path snitch_cluster)[kernels]"

Expand Down
46 changes: 46 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright 2023 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0

[build-system]
requires = ["setuptools<81", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "picobello"
version = "0.0.0"
description = "whatever it means"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Tim Fischer", email = "fischeti@iis.ee.ethz.ch" }]
dependencies = [
# FlooNoC requirements
"click",
"mako",
"matplotlib",
"networkx",
"pydantic",
"ruamel.yaml",

# Snitch cluster requirements
"json5",
"jsonref",
"jsonschema",

# Cheshire requirements
"pyyaml",
"flatdict",
"tabulate",

# Miscellaneous requirements
"hjson",

# For peakrdl
"peakrdl",
"peakrdl-rawheader @ git+https://github.com/colluca/PeakRDL-rawheader.git@7b8dbc9ad5854dc1cdaf36d4ea024c29ffb00a4c",
"peakrdl-markdown",
]

[tool.setuptools]
packages = []
include-package-data = false
29 changes: 0 additions & 29 deletions requirements.txt

This file was deleted.

Loading