Skip to content

Commit

Permalink
Revert "Make SPARQLWrapper an extra_requires for now"
Browse files Browse the repository at this point in the history
This reverts commit e5589d5.
  • Loading branch information
gromgull committed Mar 4, 2014
1 parent 36cb307 commit 787134f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Expand Up @@ -41,8 +41,8 @@ def setup_python3():
kwargs['install_requires'] = ['isodate', 'pyparsing']
kwargs['tests_require'] = ['html5lib']
kwargs['requires'] = [
'isodate', 'pyparsing']
kwargs['extras_require'] = {'SPARQLStore': 'SPARQLWrapper'}
'isodate', 'pyparsing',
'SPARQLWrapper']
kwargs['src_root'] = setup_python3()
assert setup
else:
Expand All @@ -52,8 +52,7 @@ def setup_python3():
kwargs['test_suite'] = "nose.collector"
kwargs['install_requires'] = [
'isodate',
'pyparsing']
kwargs['extras_require'] = {'SPARQLStore': 'SPARQLWrapper'}
'pyparsing', 'SPARQLWrapper']

if sys.version_info[1]<7: # Python 2.6
kwargs['install_requires'].append('ordereddict')
Expand Down

0 comments on commit 787134f

Please sign in to comment.