-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (36 loc) · 943 Bytes
/
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
# SPDX-FileCopyrightText: © 2024 Rivos Inc.
#
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "opensipi"
version = "0.2.1"
description = "An open-source Python3-based tool to automate signal integrity (SI) and power integrity (PI) related simulations."
authors = ["Yansheng Wang <yanshengw@rivosinc.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
ruamel-yaml = "^0.18.5"
psutil = "^5.9.7"
matplotlib = "^3.8.2"
scikit-rf = "^1.0.0"
pdfme = "^0.4.11"
gspread = "^5.12.4"
gspread-formatting = "^1.1.2"
tabulate = "^0.9.0"
tqdm = "^4.66.1"
google-api-python-client = "^2.115.0"
numpy = "^1.26.4"
scipy = "^1.13.0"
jinja2 = "^3.1.5"
pdfkit = "^1.0.0"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev.dependencies]
reuse = "^4.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 100
[tool.isort]
profile = "black"