Unverified Commit 64de12af by Tyler Hallada Committed by GitHub

Merge pull request #398 from edx/thallada/define-setup-requirements

Specify package dependencies in setup.py
parents b451cca0 2cc32b7b
...@@ -4,6 +4,6 @@ The exam proctoring subsystem for the Open edX platform. ...@@ -4,6 +4,6 @@ The exam proctoring subsystem for the Open edX platform.
from __future__ import absolute_import from __future__ import absolute_import
__version__ = '1.3.3' __version__ = '1.3.4'
default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
...@@ -63,6 +63,18 @@ setup( ...@@ -63,6 +63,18 @@ setup(
], ],
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
"Django>=1.8,<2.0" "Django>=1.8,<2.0",
"django-model-utils>=2.3.1",
"djangorestframework>=3.1,<3.7",
"django-ipware>=1.1.0",
"edx-opaque-keys>=0.4",
"pytz>=2012h",
"pycryptodomex>=3.4.7",
"python-dateutil>=2.1",
"requests",
"six",
], ],
dependency_links=[
"git+https://github.com/edx/event-tracking.git@0.2.2#egg=event-tracking==0.2.2",
]
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment