Skip to content

Commit

Permalink
Specify package dependencies in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thallada committed Dec 21, 2017
1 parent b451cca commit 691bd9e
Showing 1 changed file with 13 additions and 1 deletion.
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 691bd9e

Please sign in to comment.