-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
45 lines (39 loc) · 922 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
44
45
[build-system]
requires = [
"setuptools >= 61.2"
]
[project]
name = "logik"
authors = [{name = "Zero ASIC"}]
description = "Logik is a light weight FPGA tool chain based on mature open source technologies."
readme = "README.md"
urls = {Homepage = "https://github.com/zeroasiccorp/logik"}
requires-python = ">= 3.8"
dependencies = [
"siliconcompiler >= 0.27.0",
]
license = {file = "LICENSE"}
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "logik.__version__"}
[project.optional-dependencies]
test = [
"pytest == 8.3.3",
"pytest-timeout == 2.3.1",
"flake8 == 7.1.1"
]
docs = [
"Sphinx == 8.1.3",
"sphinx-rtd-theme == 3.0.1",
"autodocsumm == 0.2.14"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
[tool.pytest.ini_options]
testpaths = "tests"
timeout = "180"
markers = [
"quick: always run this test on push"
]