Skip to content

Commit

Permalink
Package tests in sdists, but don’t install them
Browse files Browse the repository at this point in the history
  • Loading branch information
merwok committed Apr 1, 2013
1 parent de215d1 commit 69df30a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ recursive-include docs *.rst
include README.rst
include LICENSE.txt
include CHANGELOG.rst
prune tests
include tests
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os.path
from setuptools import setup, find_packages
import sys
import os
from setuptools import setup

install_requires = ["requests"]

Expand All @@ -17,7 +16,7 @@
url = "http://slumber.in/",
author = "Donald Stufft",
author_email = "donald.stufft@gmail.com",
packages = find_packages(),
packages = ["slumber"],
zip_safe = False,
install_requires = install_requires,
test_suite = "tests.get_tests",
Expand Down

0 comments on commit 69df30a

Please sign in to comment.