Skip to content

Commit

Permalink
Moved hamcrest into src/
Browse files Browse the repository at this point in the history
  • Loading branch information
offbyone committed Oct 18, 2013
1 parent aa93a37 commit 29d4f9d
Show file tree
Hide file tree
Showing 58 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(fname):

# On Python 3, we can't "from hamcrest import __version__" (get ImportError),
# so we extract the variable assignment and execute it ourselves.
fh = open(local('hamcrest/__init__.py'))
fh = open(local('src/hamcrest/__init__.py'))
try:
for line in fh:
if re.match('__version__.*', line):
Expand All @@ -41,7 +41,8 @@ def read(fname):
keywords='hamcrest matchers pyunit unit test testing unittest unittesting',
url='https://github.com/hamcrest/PyHamcrest',
download_url='http://pypi.python.org/packages/source/P/PyHamcrest/PyHamcrest-%s.tar.gz' % __version__,
packages=find_packages(),
packages=find_packages('src'),
package_dir = {'': 'src'},
provides=['hamcrest'],
long_description=read('README.rst'),
install_requires=['setuptools'],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,pypy
envlist = py25,py26,py27,py32,py33,pypy
# envlist = py26,py27,py27-numpy,py32,py33,py33-numpy,pypy
# Jython is not testable, but there's no reason it should not work.
# py25 and py31 are deprecated as of 1.7.2
Expand Down

0 comments on commit 29d4f9d

Please sign in to comment.