Skip to content

Commit

Permalink
use setuptools instead distutils to support install_requires.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Feb 17, 2013
1 parent cc55fad commit 312db9b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[aliases]
test = nosetests

[nosetests]
#with-coverage = 1
cover-html = 1
cover-html-dir = coverage-html
cover-package = scrapy_redis
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from distutils.core import setup
from setuptools import setup


LONG_DESC = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
Expand Down

0 comments on commit 312db9b

Please sign in to comment.