Somewhat missnamed branch build-scripts merge with main #3

Merged
kryddan merged 7 commits from build-scripts into main 2025-02-12 10:30:49 +01:00
4 changed files with 35 additions and 0 deletions
Showing only changes of commit 5d34794c2a - Show all commits

7
scripts/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# Created by venv; see https://docs.python.org/3/library/venv.html
bin
include
lib
lib64
pyvenv.cfg
__pycache__

14
scripts/build.py Normal file
View File

@ -0,0 +1,14 @@
import typer
app = typer.Typer()
@app.command()
def synth():
print("Synth!")
@app.command()
def build():
print("Build!")
if __name__ == "__main__":
app()

4
scripts/dependecies.md Normal file
View File

@ -0,0 +1,4 @@
* GHDL = 4.1.0
* Python >= 3.0.0
* gtkwave >= v3.3.120

10
scripts/requirements.txt Normal file
View File

@ -0,0 +1,10 @@
click==8.1.8
markdown-it-py==3.0.0
mdurl==0.1.2
Pygments==2.19.1
rich==13.9.4
setuptools==75.8.0
shellingham==1.5.4
type-extensions==0.1.2
typer==0.15.1
typing_extensions==4.12.2