Added archive creation and requirements.txt
This commit is contained in:
parent
c0ecbf0175
commit
6e1f1789d8
|
@ -3,3 +3,4 @@ __pycache__/
|
|||
venv/
|
||||
input/
|
||||
output/
|
||||
pack.zip
|
||||
|
|
3
make.py
3
make.py
|
@ -208,6 +208,9 @@ async def main():
|
|||
}
|
||||
}, fp, indent=2, ensure_ascii=False)
|
||||
|
||||
with ZipFile("pack.zip", "w") as zipf:
|
||||
for file in OUTPUT_PATH.rglob("*"):
|
||||
zipf.write(file, Path(*file.parts[1:]))
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
|
|
|
@ -1 +1,12 @@
|
|||
|
||||
anyio==4.3.0
|
||||
certifi==2024.2.2
|
||||
h11==0.14.0
|
||||
httpcore==1.0.5
|
||||
httpx==0.27.0
|
||||
idna==3.7
|
||||
markdown-it-py==3.0.0
|
||||
mdurl==0.1.2
|
||||
pillow==10.3.0
|
||||
Pygments==2.18.0
|
||||
rich==13.7.1
|
||||
sniffio==1.3.1
|
||||
|
|
Loading…
Reference in New Issue