forked from UAlbertaALTLab/morphodict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
65 lines (60 loc) · 1.4 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
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
64
65
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
black = ">=19.10b0"
pytest = "~=6.0.0"
pytest-django = "~=4.1"
pytest-cov = "~=2.7"
pytest-datadir = "~=1.3"
pytest-mypy = "~=0.4"
hypothesis = {version = "~=4.34", extras = ["django"]}
codecov = "*"
pysnooper = "*"
python-levenshtein = "*"
django-debug-toolbar = "~=2.2"
isort = {extras = ["pyproject"],version = "*"}
toml = "~=0.10"
mypy = "*"
pytest-env = "*"
jupyterlab = "*"
appnope = "*"
nb_black = "*"
pandas = "*"
statsmodels = "*"
pandas-stubs = "*"
pytest-pythonpath = "*"
[packages]
colorama = "~=0.4"
coverage = "~=4.5"
cree-sro-syllabics = ">=2020.6.23"
pytz = "==2019.2"
Django = "~=3.2"
typing-extensions = "~=3.7"
attrs = "~=19.1"
django-js-reverse = "~=0.9"
secure = "*"
snowballstemmer = "*"
dawg = "~=0.8"
environs = {extras = ["django"], version = "*"}
hfst-optimized-lookup = "*"
tqdm = "~=4.40"
whitenoise = "*"
foma = {subdirectory = "foma/python", git = "https://github.com/andrewdotn/foma"}
uwsgi = "*"
gensim = "*"
more-itertools = "~=8.7.0"
[scripts]
# unit tests
test = "pytest --mypy src"
runserver_for_tests = "env USE_TEST_DB=true ./crkeng-manage runserver"
# format
format = "black src"
# building the test db takes about half a minute
ensuretestdb = "env USE_TEST_DB=true ./crkeng-manage ensuretestdb"
[requires]
python_version = "3.9"
[pipenv]
# this allows "black>=19.10b0" to work
allow_prereleases = true