Skip to content

Commit b8414e1

Browse files
committed
setup.py: Move 'nose' to tests_require
Moves 'nose' from ``install_requires`` field to ``tests_require`` field of config object as 'nose' is not required for installation of the package but only for running the tests. Fixes https://gitlab.com/balasankarc/gemfileparser/issues/1
1 parent 251c346 commit b8414e1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
8383
.. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl
8484
''',
85-
'install_requires': ['nose'],
85+
'install_requires': [],
86+
'tests_require': ['nose'],
8687
'packages': ['gemfileparser'],
8788
'scripts': [],
8889
'name': 'gemfileparser'

0 commit comments

Comments
 (0)