Skip to content

Commit

Permalink
Update the dependencies in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mjumbewu committed Jan 30, 2014
1 parent a97069a commit 68771c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion djangobars/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1-alpha"
__version__ = "0.1.0"
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
open(join(here, "TODO.rst")).read())

dependency_links = [
'git+https://github.com/mjumbewu/pymeta.git@1567444#egg=pymeta',
'git+https://github.com/mjumbewu/pybars.git@4c8d619#egg=pybars',
'git+git://github.com/mjumbewu/pymeta.git@master#egg=pymeta-0.5.0',
'git+git://github.com/mjumbewu/pybars.git@master#egg=pybars-0.1.0',
]

def get_version():
Expand All @@ -31,7 +31,11 @@ def get_version():
author_email="mjumbewu@gmail.com",
url="https://github.com/mjumbewu/djangobars/",
packages=find_packages(),
install_requires=["pymeta", "pybars"],
dependency_links=dependency_links,
install_requires=[
"pymeta==0.5.0",
"pybars==0.1.0"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
Expand Down

0 comments on commit 68771c0

Please sign in to comment.