forked from olofk/edalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.5 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "edalize"
description = "Library for interfacing EDA tools such as simulators, linters or synthesis tools, using a common interface"
readme = "README.rst"
authors = [
{name = "Olof Kindgren", email = "olof@award-winning.me"}
]
maintainers = [
{name = "Olof Kindgren", email = "olof@award-winning.me"}
]
keywords = ["VHDL", "verilog", "EDA", "hdl", "rtl", "synthesis", "FPGA", "simulation", "Xilinx", "Altera"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Utilities",
]
dynamic = ["version"]
dependencies = [
"Jinja2>=3",
"importlib_metadata>=1.4; python_version < '3.10'"
]
requires-python = ">=3.9, <4"
[project.optional-dependencies]
reporting = ["pandas", "pyparsing"]
[project.urls]
Homepage = "https://github.com/olofk/edalize"
Documentation = "https://edalize.readthedocs.io"
Repository = "https://github.com/olofk/edalize"
Issues = "https://github.com/olofk/edalize/issues"
Changelog = "https://github.com/olofk/edalize/blob/main/NEWS"
[tool.setuptools]
script-files = ["scripts/el_docker"]
[tool.setuptools_scm]
write_to = "edalize/version.py"
[dependency-groups]
dev = [
"pytest>=8.4.2",
]
[tool.setuptools.packages.find]
include = ["edalize", "edalize.tools", "edalize.flows", "edalize.build_runners"]