diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..cb72802 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE +include README.rst +recursive-include lib/githeat * \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index f0bb295..2f4d816 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index bfebe55..36bad62 100644 --- a/setup.py +++ b/setup.py @@ -41,10 +41,8 @@ def _listdir(root): "install_requires": [ "blessed", "gitdb", - "githeat", "GitPython", "py", - "pytest", "python-dateutil", "pytz", "PyYAML", @@ -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" + ] }