-
Notifications
You must be signed in to change notification settings - Fork 11
/
Pipfile
65 lines (61 loc) · 1.29 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 = "*"
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
pytest-datadir = "*"
pytest-mypy = "*"
hypothesis = {version = "*", extras = ["django"]}
pysnooper = "*"
python-levenshtein = "*"
django-debug-toolbar = "*"
isort = "*"
toml = "*"
mypy = "~=1.7"
django-stubs = "~=4.2"
pytest-env = "*"
jupyterlab = "*"
certifi = ">=2024.07.04"
appnope = "*"
pandas = "*"
statsmodels = "*"
pandas-stubs = "*"
sphinx = "*"
myst-parser = "*"
jupyter = "*"
[packages]
colorama = "*"
coverage = "*"
cree-sro-syllabics = ">=2020.6.23"
Django = "~=4.2"
typing-extensions = "*"
attrs = "*"
django-js-reverse = "*"
secure = "*"
snowballstemmer = "*"
dawg2 = "*"
environs = {extras = ["django"], version = "*"}
hfst-optimized-lookup = "*"
tqdm = "*"
whitenoise = "*"
foma = {subdirectory = "foma/python", git = "https://github.com/andrewdotn/foma"}
uwsgi = "*"
gensim = "*"
scipy = "*"
more-itertools = "*"
types-requests = "*"
requests = "*"
[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.10"