-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 1.28 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "hwtLib"
version = "2.9"
dependencies = [
'hwt>=3.8',
]
requires-python = ">=3.8"
authors = [
{name = "Michal Orsak", email = "Nic30original@gmail.com"},
]
description = "A library of hardware components and test for HWT framework (FPGA devel. tools)"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
'hdl', 'vhdl', 'verilog', 'systemverilog',
'parser', 'preprocessor', 'antlr4', 'ast', 'code-generator']
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: System :: Hardware",
"Topic :: System :: Emulators",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/Nic30/hwtLib"
Documentation = "https://hwtLib.readthedocs.io/en/latest/?badge=latest"
Repository = "https://github.com/Nic30/hwtLib.git"
"Bug Tracker" = "https://github.com/Nic30/hwtLib/issues"