Upload folder using huggingface_hub
Browse files- pyproject.toml +19 -14
- requirements.txt +147 -63
pyproject.toml
CHANGED
|
@@ -1,20 +1,25 @@
|
|
| 1 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
name = "ankigen"
|
| 3 |
version = "0.1.0"
|
| 4 |
description = ""
|
| 5 |
-
authors = [
|
|
|
|
|
|
|
| 6 |
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
-
[
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
python-dotenv = "^1.0.1"
|
| 13 |
-
gradio = "^4.44.0"
|
| 14 |
|
| 15 |
-
[tool.
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
[build-system]
|
| 19 |
-
requires = ["poetry-core"]
|
| 20 |
-
build-backend = "poetry.core.masonry.api"
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
name = "ankigen"
|
| 7 |
version = "0.1.0"
|
| 8 |
description = ""
|
| 9 |
+
authors = [
|
| 10 |
+
{name = "Justin", email = "9146678+brickfrog@users.noreply.github.com"}
|
| 11 |
+
]
|
| 12 |
readme = "README.md"
|
| 13 |
+
requires-python = ">=3.12"
|
| 14 |
+
dependencies = [
|
| 15 |
+
"openai>=1.35.10",
|
| 16 |
+
"gradio>=4.44.1",
|
| 17 |
+
]
|
| 18 |
|
| 19 |
+
[project.optional-dependencies]
|
| 20 |
+
dev = [
|
| 21 |
+
"ipykernel>=6.29.5",
|
| 22 |
+
]
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
[tool.setuptools]
|
| 25 |
+
py-modules = ["app"]
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
|
@@ -1,63 +1,147 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
annotated-types==0.7.0
|
| 2 |
+
ansible==10.4.0
|
| 3 |
+
ansible-core==2.17.4
|
| 4 |
+
apsw==3.46.1.0
|
| 5 |
+
arandr==0.1.11
|
| 6 |
+
argcomplete==3.4.0
|
| 7 |
+
asciidoc==10.2.1
|
| 8 |
+
async-timeout==4.0.3
|
| 9 |
+
attrs==23.2.1.dev0
|
| 10 |
+
autocommand==2.2.2
|
| 11 |
+
autotiling==1.9.3
|
| 12 |
+
bcrypt==4.1.3
|
| 13 |
+
beautifulsoup4==4.12.3
|
| 14 |
+
Brotli==1.1.0
|
| 15 |
+
brotlicffi==1.1.0.0
|
| 16 |
+
btrfsutil==6.10
|
| 17 |
+
certifi==2024.8.30
|
| 18 |
+
cffi==1.16.0
|
| 19 |
+
chardet==5.2.0
|
| 20 |
+
charset-normalizer==3.3.2
|
| 21 |
+
click==8.1.7
|
| 22 |
+
colorama==0.4.6
|
| 23 |
+
coverage==7.6.1
|
| 24 |
+
cryptography==42.0.7
|
| 25 |
+
css-parser==1.0.10
|
| 26 |
+
cssselect==1.2.0
|
| 27 |
+
dbus-python==1.3.2
|
| 28 |
+
decorator==5.1.1
|
| 29 |
+
defusedxml==0.7.1
|
| 30 |
+
distlib==0.3.8
|
| 31 |
+
distro==1.9.0
|
| 32 |
+
dnspython==2.6.1
|
| 33 |
+
docutils==0.21.2
|
| 34 |
+
evdev==1.7.1
|
| 35 |
+
fastjsonschema==2.20.0
|
| 36 |
+
faust-cchardet==2.1.19
|
| 37 |
+
feedparser==6.0.11
|
| 38 |
+
filelock==3.13.3
|
| 39 |
+
future==1.0.0
|
| 40 |
+
glad2==2.0.8
|
| 41 |
+
Glances==4.1.2
|
| 42 |
+
html2text==2024.2.26
|
| 43 |
+
html5-parser==0.4.12
|
| 44 |
+
html5lib==1.1
|
| 45 |
+
i3ipc==2.2.1
|
| 46 |
+
idna==3.8
|
| 47 |
+
ifaddr==0.2.0
|
| 48 |
+
inflate64==1.0.0
|
| 49 |
+
inflect==7.3.1
|
| 50 |
+
isodate==0.6.1
|
| 51 |
+
jaraco.context==5.3.0
|
| 52 |
+
jaraco.functools==4.0.2
|
| 53 |
+
jaraco.text==4.0.0
|
| 54 |
+
jeepney==0.8.0
|
| 55 |
+
Jinja2==3.1.4
|
| 56 |
+
lensfun==0.3.4
|
| 57 |
+
libtorrent==2.0.10
|
| 58 |
+
lit==18.1.8.dev0
|
| 59 |
+
lxml==5.3.0
|
| 60 |
+
lxml_html_clean==0.2.0
|
| 61 |
+
Mako==1.3.5.dev0
|
| 62 |
+
Markdown==3.7
|
| 63 |
+
MarkupSafe==2.1.5
|
| 64 |
+
mechanize==0.4.10
|
| 65 |
+
meson==1.5.2
|
| 66 |
+
moddb==0.11.0
|
| 67 |
+
more-itertools==10.3.0
|
| 68 |
+
msgpack==1.0.5
|
| 69 |
+
multivolumefile==0.2.3
|
| 70 |
+
netifaces==0.11.0
|
| 71 |
+
netsnmp-python==1.0a1
|
| 72 |
+
nftables==0.1
|
| 73 |
+
nose==1.3.7
|
| 74 |
+
ordered-set==4.1.0
|
| 75 |
+
orjson==3.10.7
|
| 76 |
+
packaging==24.1
|
| 77 |
+
paramiko==3.4.0
|
| 78 |
+
pdftotext==2.2.2
|
| 79 |
+
perf==0.1
|
| 80 |
+
pillow==10.4.0
|
| 81 |
+
pipenv==2024.1.0
|
| 82 |
+
pipx==1.6.0
|
| 83 |
+
platformdirs==4.3.6
|
| 84 |
+
protontricks==1.12.0
|
| 85 |
+
psutil==6.0.0
|
| 86 |
+
py7zr==0.22.0
|
| 87 |
+
pybcj==1.0.2
|
| 88 |
+
pycairo==1.27.0
|
| 89 |
+
pychm==0.8.6
|
| 90 |
+
pycparser==2.22
|
| 91 |
+
pycryptodome==3.20.0
|
| 92 |
+
pycryptodomex==3.20.0
|
| 93 |
+
pydantic==2.9.2
|
| 94 |
+
pydantic_core==2.23.4
|
| 95 |
+
Pygments==2.18.0
|
| 96 |
+
PyGObject==3.50.0
|
| 97 |
+
pyinotify==0.9.6
|
| 98 |
+
PyNaCl==1.5.0
|
| 99 |
+
pyparsing==3.1.2
|
| 100 |
+
pyppmd==1.1.0
|
| 101 |
+
PyQt5==5.15.11
|
| 102 |
+
PyQt5_sip==12.15.0
|
| 103 |
+
PyQt6==6.7.1
|
| 104 |
+
PyQt6-WebEngine==6.7.0
|
| 105 |
+
PyQt6_sip==13.8.0
|
| 106 |
+
pyte==0.8.2
|
| 107 |
+
python-dateutil==2.9.0
|
| 108 |
+
python-xlib==0.33
|
| 109 |
+
pyxdg==0.28
|
| 110 |
+
PyYAML==6.0.2
|
| 111 |
+
pyzstd==0.16.1
|
| 112 |
+
rdflib==7.0.0
|
| 113 |
+
Reflector==2023.6.28.0.36.1
|
| 114 |
+
regex==2024.9.11
|
| 115 |
+
requests==2.32.3
|
| 116 |
+
resolvelib==1.0.1
|
| 117 |
+
setuptools==69.5.1
|
| 118 |
+
sgmllib3k==1.0.0
|
| 119 |
+
shtab==1.7.1
|
| 120 |
+
six==1.16.0
|
| 121 |
+
soupsieve==2.6
|
| 122 |
+
TBB==0.2
|
| 123 |
+
termcolor==2.4.0
|
| 124 |
+
texttable==1.7.0
|
| 125 |
+
thefuck==3.32
|
| 126 |
+
tldr==3.3.0
|
| 127 |
+
tomli==2.0.1
|
| 128 |
+
tqdm==4.66.5
|
| 129 |
+
trackma==0.8.6
|
| 130 |
+
trove-classifiers==2024.9.17
|
| 131 |
+
typeguard==4.3.0
|
| 132 |
+
typing_extensions==4.12.2
|
| 133 |
+
ufw==0.36.2
|
| 134 |
+
unrardll==0.1.7
|
| 135 |
+
urllib3==1.26.20
|
| 136 |
+
userpath==1.9.2
|
| 137 |
+
validate-pyproject==0.19
|
| 138 |
+
vdf==3.5
|
| 139 |
+
virtualenv==20.26.2
|
| 140 |
+
virtualenv-clone==0.5.7
|
| 141 |
+
wcwidth==0.2.13
|
| 142 |
+
webencodings==0.5.1
|
| 143 |
+
wheel==0.44.0
|
| 144 |
+
xxhash==3.4.1
|
| 145 |
+
yt-dlp==2024.9.27
|
| 146 |
+
zeroconf==0.132.2
|
| 147 |
+
zstandard==0.22.0
|