Prepare HF space
Browse files- requirements.txt +73 -0
- src/chessli2/app.py +5 -0
requirements.txt
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==23.2.1
|
2 |
+
altair==5.2.0
|
3 |
+
annotated-types==0.6.0
|
4 |
+
anyio==4.2.0
|
5 |
+
attrs==23.2.0
|
6 |
+
berserk==0.13.2
|
7 |
+
certifi==2023.11.17
|
8 |
+
charset-normalizer==3.3.2
|
9 |
+
chess==1.10.0
|
10 |
+
click==8.1.7
|
11 |
+
contourpy==1.2.0
|
12 |
+
cycler==0.12.1
|
13 |
+
deprecated==1.2.14
|
14 |
+
fastapi==0.109.0
|
15 |
+
ffmpy==0.3.1
|
16 |
+
filelock==3.13.1
|
17 |
+
fonttools==4.47.2
|
18 |
+
fsspec==2023.12.2
|
19 |
+
gradio==4.29.0
|
20 |
+
gradio-calendar==0.0.4
|
21 |
+
gradio-client==0.16.1
|
22 |
+
h11==0.14.0
|
23 |
+
httpcore==1.0.2
|
24 |
+
httpx==0.26.0
|
25 |
+
huggingface-hub==0.20.2
|
26 |
+
idna==3.6
|
27 |
+
importlib-resources==6.1.1
|
28 |
+
jinja2==3.1.3
|
29 |
+
jsonschema==4.20.0
|
30 |
+
jsonschema-specifications==2023.12.1
|
31 |
+
kiwisolver==1.4.5
|
32 |
+
markdown-it-py==3.0.0
|
33 |
+
markupsafe==2.1.3
|
34 |
+
matplotlib==3.8.2
|
35 |
+
mdurl==0.1.2
|
36 |
+
ndjson==0.3.1
|
37 |
+
numpy==1.26.3
|
38 |
+
orjson==3.9.10
|
39 |
+
packaging==23.2
|
40 |
+
pandas==2.1.4
|
41 |
+
pillow==10.2.0
|
42 |
+
pydantic==2.5.3
|
43 |
+
pydantic-core==2.14.6
|
44 |
+
pydantic-settings==2.1.0
|
45 |
+
pydub==0.25.1
|
46 |
+
pygments==2.17.2
|
47 |
+
pyparsing==3.1.1
|
48 |
+
python-dateutil==2.8.2
|
49 |
+
python-dotenv==1.0.0
|
50 |
+
python-multipart==0.0.9
|
51 |
+
pytz==2023.3.post1
|
52 |
+
pyyaml==6.0.1
|
53 |
+
referencing==0.32.1
|
54 |
+
requests==2.31.0
|
55 |
+
rich==13.7.0
|
56 |
+
rpds-py==0.17.1
|
57 |
+
ruff==0.4.3
|
58 |
+
semantic-version==2.10.0
|
59 |
+
shellingham==1.5.4
|
60 |
+
six==1.16.0
|
61 |
+
sniffio==1.3.0
|
62 |
+
starlette==0.35.1
|
63 |
+
tabulate==0.9.0
|
64 |
+
tomlkit==0.12.0
|
65 |
+
toolz==0.12.0
|
66 |
+
tqdm==4.66.1
|
67 |
+
typer==0.12.3
|
68 |
+
typing-extensions==4.9.0
|
69 |
+
tzdata==2023.4
|
70 |
+
urllib3==2.1.0
|
71 |
+
uvicorn==0.25.0
|
72 |
+
websockets==11.0.3
|
73 |
+
wrapt==1.16.0
|
src/chessli2/app.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from chessli2.gui import demo
|
2 |
+
|
3 |
+
|
4 |
+
if __name__ == "__main__":
|
5 |
+
demo.launch(show_error=True)
|