Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
seatup.py: fix [dev_]requirements and open file with context
Browse files Browse the repository at this point in the history
setup(..) named arguments 'install_requires' and 'extras_require' need lists
arguments, the <map object> is ignored when installing extra environment
'test'::

  pip install -e .\[test\]

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
  • Loading branch information
return42 committed Nov 28, 2019
1 parent 05033ea commit a56c56e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
sys.path.insert(0, './searx')
from version import VERSION_STRING

with open('README.rst') as f:
long_description = f.read()

def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
with open('requirements.txt') as f:
requirements = [ l.strip() for l in f.readlines()]


long_description = read('README.rst')
requirements = map(str.strip, open('requirements.txt').readlines())
dev_requirements = map(str.strip, open('requirements-dev.txt').readlines())
with open('requirements-dev.txt') as f:
dev_requirements = [ l.strip() for l in f.readlines()]

setup(
name='searx',
Expand Down

0 comments on commit a56c56e

Please sign in to comment.