Skip to content

Commit

Permalink
Merge pull request #398 from edx/thallada/define-setup-requirements
Browse files Browse the repository at this point in the history
Specify package dependencies in setup.py
  • Loading branch information
thallada authored Dec 21, 2017
2 parents b451cca + 2cc32b7 commit 64de12a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from __future__ import absolute_import

__version__ = '1.3.3'
__version__ = '1.3.4'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ def get_version(*file_paths):
],
include_package_data=True,
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/[email protected]#egg=event-tracking==0.2.2",
]
)

0 comments on commit 64de12a

Please sign in to comment.