Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Parse out requirments.txt and install the required package
Browse files Browse the repository at this point in the history
  • Loading branch information
limed committed Apr 2, 2014
1 parent c9a6471 commit fbf1d9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -9,11 +9,15 @@
else:
data_files = None

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='invtool',
version=invtool.__version__,
author='Jacques Uber',
author_email='juber@mozilla.com',
install_requires=required,
packages=['invtool', 'invtool.tests', 'invtool.lib', 'invtool.kv'],
package_dir={'invtool': 'invtool'},
package_data={
Expand Down

0 comments on commit fbf1d9f

Please sign in to comment.