Added archive creation and requirements.txt

This commit is contained in:
Casey 2024-05-22 11:07:50 +03:00
parent c0ecbf0175
commit 6e1f1789d8
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
3 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ __pycache__/
venv/
input/
output/
pack.zip

View File

@ -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())

View File

@ -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