Skip to content

Commit 238e100

Browse files
committed
Move tests_require to extras_require
Allows installing test requirements with pip.
1 parent 96ec32b commit 238e100

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
'six>=1.10.0',
4848
'promise>=0.4.2'
4949
],
50-
tests_require=[
51-
'pytest>=2.7.3',
52-
'gevent==1.1rc1',
53-
'six>=1.10.0',
54-
'pytest-mock',
55-
'promise>=0.4.2'
56-
],
5750
extras_require={
5851
'gevent': [
5952
'gevent==1.1rc1'
53+
],
54+
'test': [
55+
'pytest>=2.7.3',
56+
'gevent==1.1rc1',
57+
'six>=1.10.0',
58+
'pytest-mock',
59+
'promise>=0.4.2'
6060
]
6161
}
6262
)

0 commit comments

Comments
 (0)