Makes Registrasion’s dependencies fully installable through -—process-dependency-links

This commit is contained in:
Christopher Neugebauer 2016-04-26 14:29:57 +10:00
parent 8afb31a118
commit 0efd9e146a
4 changed files with 4 additions and 2 deletions

View file

@ -1 +1,2 @@
django-nested-admin==2.2.6 django-nested-admin==2.2.6
SymposionMaster==1.0.0b3-dev

View file

@ -0,0 +1 @@
https://github.com/pinax/symposion/tarball/ad81810#egg=SymposionMaster-1.0.0b3-dev

View file

@ -1,4 +1,4 @@
# Requirements that currently live in git land, so are necessary to make the # Requirements that currently live in git land, so are necessary to make the
# project build, but can't live in setup.py # project build, but can't live in setup.py
-e git+https://github.com/pinax/symposion.git#egg=SymposionMaster # Symposion lives on git at the moment -e git+https://github.com/pinax/symposion.git@ad81810#egg=SymposionMaster-1.0.0b3-dev # Symposion lives on git at the moment

View file

@ -14,7 +14,6 @@ def read_file(filename):
except IOError: except IOError:
return '' return ''
setup( setup(
name="registrasion", name="registrasion",
author="Christopher Neugebauer", author="Christopher Neugebauer",
@ -34,4 +33,5 @@ setup(
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
), ),
install_requires=read_file("requirements/base.txt").splitlines(), install_requires=read_file("requirements/base.txt").splitlines(),
dependency_links=read_file("requirements/dependencies.txt").splitlines(),
) )