-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pipfile
68 lines (63 loc) · 1.41 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
66
67
68
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
black = ">=19.10b0"
pytest = "==6.2.5"
pytest-django = "==4.4.0"
pytest-cov = "*"
pytest-datadir = "*"
pytest-mypy = "*"
pysnooper = "*"
python-levenshtein = "*"
django-debug-toolbar = "*"
isort = {extras = ["pyproject"],version = "*"}
toml = "*"
mypy = "*"
pytest-env = "*"
appnope = "*"
statsmodels = "*"
pandas-stubs = "*"
pytest-pythonpath = "*"
sphinx = "*"
myst-parser = "*"
[packages]
colorama = "~=0.4"
coverage = "*"
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 = "*"
whitenoise = "*"
foma = {subdirectory = "foma/python", git = "https://github.com/andrewdotn/foma"}
uwsgi = "*"
gensim = "*"
more-itertools = "~=8.7.0"
types-requests = "*"
requests = "*"
django-cors-headers = "*"
djangorestframework = "*"
paradigm-manager = "*"
nltk = "*"
[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