added initial files

This commit is contained in:
Erik Örtenberg 2025-02-10 23:30:17 +01:00
parent 4390c922a4
commit 5d34794c2a
4 changed files with 35 additions and 0 deletions

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