Closed GoogleCodeExporter closed 9 years ago
I am currently knocking up a setup.py script 'cause it's so annoying that there
isn't one.
First step is for it to be absorbed, appropriately modified and added to SCM.
Second step is to do all the nice PyPI stuff.
At least if it's in teh source, user can download and install manually...
rather than manage inter project references in Eclipse/PyDev, as I am doing
q(`_`#!)p
Original comment by dbisho...@gmail.com
on 29 Jul 2010 at 1:50
'''
Created on 29 July 2010
Provided to jump start the provision of a setup.py script for use
with setuptools and easy_install; this comment should be changed
as and when
@author: Darren Bishop
'''
import sys, os
from setuptools import find_packages
from distutils.core import setup
setup(
name='hamcrest-python',
version='1.1',
description='Hamcrest - library of matchers for building test expressions ',
packages=find_packages(),
author='Darren Bishop',
author_email='dev at hamcrest-python dot com',
license='BSD',
url='http://code.google.com/p/hamcrest/',
keywords='hamcrest python unittest testing tdd'
)
Original comment by dbisho...@gmail.com
on 29 Jul 2010 at 2:27
Attachments:
Original comment by jon.m.r...@gmail.com
on 3 May 2011 at 6:38
To all commenters on this; if you are wondering where to find it, the PyPi
module name is 'PyHamcrest'
Original comment by off...@offby1.net
on 3 May 2011 at 6:40
Original issue reported on code.google.com by
andrea.f...@gmail.com
on 22 Mar 2009 at 10:38