-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.8 KB
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
# 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
[project]
name = "floogen"
version = "0.8.0"
description = "A Network Generator for FlooNoC"
readme = "docs/floogen/overview.md"
license = "Apache-2.0"
license-files = ["LICENSE-APACHE"]
requires-python = ">=3.10"
authors = [{ name = "Tim Fischer", email = "fischeti@iis.ee.ethz.ch" }]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Development Status :: 4 - Beta",
]
keywords = ["noc", "network-on-chip", "generator", "systemverilog", "eda", "pulp-platform"]
dependencies = [
"pydantic",
"networkx",
"matplotlib",
"mako",
"ruamel.yaml",
"click>=8.3.1",
]
[project.urls]
Homepage = "https://github.com/pulp-platform/FlooNoC"
Repository = "https://github.com/pulp-platform/FlooNoC"
Documentation = "https://pulp-platform.github.io/FlooNoC/"
Changelog = "https://github.com/pulp-platform/FlooNoC/blob/main/CHANGELOG.md"
[project.scripts]
floogen = "floogen.cli:main"
[dependency-groups]
dev = [
"pytest",
"ruff",
"mkdocstrings-python>=2.0.1",
"zensical",
]
viz = ["pygame"]
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "floogen"
module-root = ""
wheel-exclude = ["floogen/tests/**"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pytest.ini_options]
testpaths = ["floogen/tests"]
[tool.pylint.format]
max-line-length = 100
jobs = 4
suggestion-mode = "yes"
[tool.ruff]
line-length = 100