Skip to content

Commit 312db9b

Browse files
committed
use setuptools instead distutils to support install_requires.
1 parent cc55fad commit 312db9b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

setup.cfg

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[aliases]
2+
test = nosetests
3+
4+
[nosetests]
5+
#with-coverage = 1
6+
cover-html = 1
7+
cover-html-dir = coverage-html
8+
cover-package = scrapy_redis

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from distutils.core import setup
2+
from setuptools import setup
33

44

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

0 commit comments

Comments
 (0)