-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 943 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
[project]
name = "tydi-lang-2-chisel"
version = "0.0.1"
authors = [
{ name="Casper Cromjongh", email="[email protected]" },
]
description = "Tydi-lang-2-Chisel is a transpiler that takes tydi-lang-2's json output of a Tydi-lang description and converts it to Chisel code that uses Tydi-Chisel."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"jinja2"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/ccromjongh/Tydi-lang-2-chisel"
Issues = "https://github.com/ccromjongh/Tydi-lang-2-chisel/issues"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[project.scripts]
flit = "tl2chisel:main"
[tool.flit.module]
name = "tl2chisel"