Skip to content

Commit

Permalink
fix setup dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Jul 19, 2024
1 parent bdf18df commit 72b10a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
exec(f.read(), about)

reqs = [line.strip() for line in open('requirements.txt')]
dev_reqs = [line.strip() for line in open('requirements_dev.txt')]
dev_reqs = [
line.strip() for line in open('requirements_dev.txt')
if not line.startswith("-r ")
]

setup(name='pyramid_twitcher',
version=about['__version__'],
Expand Down

0 comments on commit 72b10a2

Please sign in to comment.