Skip to content

Commit 33c8c9b

Browse files
committed
Resolve install requirements with MANIFEST.in
1 parent ba68ec9 commit 33c8c9b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include requirements.txt

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def read(*paths):
1111
return filename.read()
1212

1313

14-
install_requires = ['slacker >= 0.7.3']
14+
install_requires = read('requirements.txt').splitlines()
1515
try:
1616
import argparse
1717
except ImportError:

0 commit comments

Comments
 (0)