-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPipfile
33 lines (28 loc) · 883 Bytes
/
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
lxml = ">=4.3.0,<5.0.0"
invenio = {version = "3.5.0a4",extras = ["base", "auth", "metadata", "files", "postgresql", "elasticsearch7" ]}
marshmallow = ">=3.0.0,<4.0.0"
uwsgi = ">=2.0"
uwsgi-tools = ">=1.1.1"
uwsgitop = ">=0.11"
fare = {editable = true,path = "."}
python-dotenv = ">=0.14.0"
bigbluebutton-api-python = {editable = true,git = "https://github.com/101t/bigbluebutton-api-python"}
# nbconvert and importlib-metadata added temporarily
wtforms = ">=2.3.1"
invenio-assets = ">=1.2.7"
[dev-packages]
pytest-invenio =">=1.4.7"
Sphinx = ">=3,<4"
[requires]
python_version = "3.7"
[scripts]
test = "python setup.py test"
build_sphinx = "python setup.py build_sphinx"
# prereleases allowed because of this https://github.com/celery/pytest-celery/issues/4
[pipenv]
allow_prereleases = true