-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 851 Bytes
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
# Project metadata
[project]
name = "chipflow-test-socs"
version = "0.0.0"
description = "ChipFlow test designs"
authors = [
{name = "Robert Taylor", email = "rob.taylor@chipflow.io"},
{name = "Catherine Zotova", email = "catherine.zotova@chipflow.io"},
{name = "Serge Rabyking", email = "serge.rabyking@chipflow.io"},
]
license = {file = "LICENSE.md"}
requires-python = ">=3.12,<3.14.0"
dependencies = [
"amaranth[builtin-yosys]>=0.5.1",
"chipflow-lib @ git+https://github.com/ChipFlow/chipflow-lib.git@v0.4.0",
]
[tool.uv]
package = false
[tool.uv.sources]
chipflow-lib = { path = "../chipflow-lib", editable = true }
# Development workflow configuration
[dependency-groups]
test = [
"pytest~=7.2.0",
]
lint = [
"pycodestyle~=2.9.1",
"autopep8~=2.0.0",
]
dev = [
{include-group = "test"},
{include-group = "lint"},
]