Skip to content

Commit

Permalink
correcting grablib setup
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Jan 9, 2017
1 parent bdb3e64 commit 4bcfea1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Makefile
@@ -1,9 +1,9 @@
.PHONY: install
install:
pip install -U pip
pip install -U setuptools pip
pip install .
python setup.py check # bodge to make sure livereload is downloaded
pip install -Ur tests/requirements.txt
pip install -r tests/requirements.txt
grablib

.PHONY: isort
isort:
Expand Down
5 changes: 0 additions & 5 deletions setup.py
Expand Up @@ -2,18 +2,13 @@
from importlib.machinery import SourceFileLoader
from pathlib import Path
from setuptools import setup
from grablib import Grab

THIS_DIR = Path(__file__).resolve().parent
long_description = THIS_DIR.joinpath('README.rst').read_text()

# avoid loading the package before requirements are installed:
version = SourceFileLoader('version', 'aiohttp_devtools/version.py').load_module()

# make sure livereload.js exists.
grab = Grab(THIS_DIR / 'grablib.yml')
grab.download()

package = THIS_DIR.joinpath('aiohttp_devtools/start')

start_package_data = []
Expand Down

0 comments on commit 4bcfea1

Please sign in to comment.