-
Notifications
You must be signed in to change notification settings - Fork 192
/
pyproject.toml
42 lines (35 loc) · 1.3 KB
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
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"]
requires-python = ">=3.6, <4"
[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]
version_file = "edalize/version.py"
[tool.setuptools.packages.find]
include = ["edalize", "edalize.tools", "edalize.flows"]