-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
30 lines (25 loc) · 1.01 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
ipykernel = "*"
awscli = "*"
[packages]
smart-open= {extras = ["s3"], version = "==6.4"}
spacy = "==3.6"
python-dotenv = "*"
spacy-lookups-data = "*"
de-core-news-md = {file = "https://github.com/explosion/spacy-models/releases/download/de_core_news_md-3.6.0/de_core_news_md-3.6.0.tar.gz"}
# https://github.com/explosion/spacy-models/releases/tag/fr_core_news_md-3.6.0
fr-core-news-md = {file = "https://github.com/explosion/spacy-models/releases/download/fr_core_news_md-3.6.0/fr_core_news_md-3.6.0.tar.gz"}
en-core-web-md = {file = "https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.6.0/en_core_web_md-3.6.0.tar.gz"}
# luxembourgish model is in repository and comes from https://github.com/PeterGilles/Luxembourgish-language-resources
boto3 = "*"
jsonschema = "*"
# pin it to a version 1 (otherwise it will install version 2)
numpy = "==1.26.*"
[requires]
python_version = "3.11"
[pipenv]
allow_prereleases = true