Skip to content

Commit

Permalink
Remove the dependency-links section from the setup. Make a note in th…
Browse files Browse the repository at this point in the history
…e README
  • Loading branch information
mjumbewu committed Feb 16, 2014
1 parent 1bb4ff2 commit e8308ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ in the issues. And pull-requests welcome!**
Installation
------------

1. ``pip install djangobars``
1. Install ``pybars``, ``pymeta``, and ``djangobars``::

pip install git+git://github.com/mjumbewu/pymeta.git@master#egg=pymeta
pip install git+git://github.com/mjumbewu/pybars.git@master#egg=pybars
pip install djangobars

*NOTE that ``djangobars`` depends on particular versions of ``pymeta`` and
``pybars``. If you add ``djangobars`` to a requirements file, be sure to add
these versions of ``pymeta`` and ``pybars`` first.*

2. Add ``'djangobars'`` to your installed applications.

Expand Down
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@
open(join(here, "CHANGES.rst")).read() + "\n\n" +
open(join(here, "TODO.rst")).read())

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

def get_version():
fh = open(join(here, "djangobars", "__init__.py"))
try:
Expand All @@ -31,10 +26,9 @@ def get_version():
author_email="mjumbewu@gmail.com",
url="https://github.com/mjumbewu/djangobars/",
packages=find_packages(),
dependency_links=dependency_links,
install_requires=[
"pymeta==0.5.0-mjumbewu1",
"pybars==0.1.0-mjumbewu1"
"pymeta",
"pybars"
],
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit e8308ed

Please sign in to comment.