-
Notifications
You must be signed in to change notification settings - Fork 12
/
Pipfile
58 lines (54 loc) · 1.2 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
celery = "==5.1.2"
idutils = "*"
invenio = {version = "==3.4.1",extras = ["elasticsearch7", "postgresql"]}
invenio-app = "==1.3.3"
invenio-base = "==1.2.5"
invenio-celery = "==1.2.3"
invenio-accounts = "==1.4.9"
invenio-indexer = ">=1.2.1"
invenio-logging = "==1.3.0"
invenio-oauth2server = "==1.3.4"
invenio-queues = "==1.0.0a3"
invenio-records-rest = "==1.9.0"
invenio-search = "==1.4.2"
invenio-rest = ">=1.2.3"
invenio-theme = "==1.3.10"
flask = "==2.0.2"
jsonschema = "*"
marshmallow = ">=3.0.0,<4.0.0"
raven = {version = "*",extras = ["flask"]}
requests = "*"
uwsgi = ">= 2.0.19"
uwsgi-tools = "*"
uwsgitop = "*"
ipython = "*"
slackclient = "*"
[dev-packages]
check-manifest = "*"
coverage = "*"
flake8 = "*"
isort = "*"
mock = "*"
pydocstyle = "*"
pytest = "*"
pytest-cov = "*"
pytest-invenio = "*"
pytest-mock = "*"
pytest-pycodestyle = "*"
pytest-random-order = "*"
pytest-runner = "*"
sphinx = "*"
sphinx-autodoc-typehints = "*"
sphinx-click = "*"
sphinxcontrib-httpdomain = "*"
sphinxcontrib-httpexample = "*"
[requires]
python_version = "3.8"
[scripts]
test = "python setup.py test"
build_sphinx = "python setup.py build_sphinx"