added initial files
This commit is contained in:
parent
4390c922a4
commit
5d34794c2a
7
scripts/.gitignore
vendored
Normal file
7
scripts/.gitignore
vendored
Normal 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
14
scripts/build.py
Normal 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
4
scripts/dependecies.md
Normal file
@ -0,0 +1,4 @@
|
||||
* GHDL = 4.1.0
|
||||
* Python >= 3.0.0
|
||||
* gtkwave >= v3.3.120
|
||||
|
||||
10
scripts/requirements.txt
Normal file
10
scripts/requirements.txt
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user