-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (47 loc) · 1.81 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "hwt"
version = "3.8"
dependencies = [
"natsort>=8.4.0", # natural sorting for HDL objects with name
"hdlConvertorAst>=1.0", # conversions to SystemVerilog, VHDL
"ipCorePackager>=0.6", # generator of IPcore packages (IP-xact, ...)
"hwtSimApi>=1.3", # simulator API
"pyDigitalWaveTools>=1.1", # simulator output dump
]
requires-python = ">=3.8"
authors = [
{name = "Michal Orsak", email = "Nic30original@gmail.com"},
]
description = "A library for a construction and analysis of digital circuits"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
'hdl', 'vhdl', 'verilog', 'verilog-hdl', 'systemverilog', 'code-generator', 'ipcore',
'compiler', 'hardware', 'high-level-synthesis', 'hardware-construction-language'
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: System :: Hardware",
"Topic :: System :: Emulators",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/Nic30/hwt"
Documentation = "https://hwtoolkit.readthedocs.io/en/latest/?badge=latest"
Repository = "https://github.com/Nic30/hwt.git"
"Bug Tracker" = "https://github.com/Nic30/hwt/issues"