Skip to content

Commit

Permalink
Update test_requires in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ammsa committed Jul 5, 2016
1 parent 460d570 commit a7d914b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.rst
recursive-include lib/githeat *
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
blessed==1.14.1
gitdb==0.6.4
githeat==0.1.0.dev0
GitPython==2.0.6
py==1.4.31
pytest==2.9.2
Expand Down
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ def _listdir(root):
"install_requires": [
"blessed",
"gitdb",
"githeat",
"GitPython",
"py",
"pytest",
"python-dateutil",
"pytz",
"PyYAML",
Expand All @@ -54,8 +52,13 @@ def _listdir(root):
"wheel",
"xtermcolor",
],
"data_files": list(chain.from_iterable(_listdir(root) for root in _DATA))

"data_files": list(chain.from_iterable(_listdir(root) for root in _DATA)),
"tests_require": [
"pytest>=2.9"
"pytest-cov"
"mock",
"argparse"
]
}


Expand Down

0 comments on commit a7d914b

Please sign in to comment.