Skip to content
This repository has been archived by the owner on May 16, 2020. It is now read-only.

Commit

Permalink
Add dependency link for Coaster
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Jul 14, 2017
1 parent 9085a53 commit 5288ffa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))
README = unicode(open(os.path.join(here, 'README.rst')).read(), 'utf-8')
CHANGES = unicode(open(os.path.join(here, 'CHANGES.rst')).read(), 'utf-8')
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
versionfile = open(os.path.join(here, "nodular", "_version.py")).read()

mo = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]", versionfile, re.M)
Expand All @@ -22,6 +22,11 @@
'coaster>=0.6.0',
]

dependency_links = [
'https://github.com/hasgeek/coaster/archive/master.zip#egg=coaster-0.6.0'
]


setup(
name='nodular',
version=version,
Expand All @@ -46,4 +51,5 @@
zip_safe=True,
test_suite='tests',
install_requires=requires,
dependency_links=dependency_links,
)

0 comments on commit 5288ffa

Please sign in to comment.