Open GoogleCodeExporter opened 8 years ago
I would be happy to create a setup.py for this. However, the distributed files
in their current form are not particularly suitable for PyPI distribution. I
would suggest some separate zips/tarballs for Python 2 and Python 3.
I'm thinking of creating my own packages and registering them on PyPI. I know
this is Open Source and it's allowed, but I thought I'd check here if there are
any objections first.
Original comment by L.Plant...@cantab.net
on 6 Sep 2011 at 12:14
We found a distribution someplace else and have continued to use it the
setup.py from that package with just the diff-match-patch.py and put it on our
own distribution area to work around this. Works for our purposes, but I agree
that it would be nice to have a proper pypi distribution.
from setuptools import setup
setup(
name='diff-match-patch',
version='20110217',
author='Neil Fraser',
url='http://code.google.com/p/google-diff-match-patch/',
py_modules=['diff_match_patch'],
test_suite='diff_match_patch_test.DiffMatchPatchTest',
)
Original comment by fjollb...@gmail.com
on 6 Sep 2011 at 5:55
I went ahead and created a Python package:
http://pypi.python.org/pypi/diff-match-patch/
It includes Python 2 and Python 3.
Original comment by L.Plant...@cantab.net
on 8 Sep 2011 at 4:24
Thanks Luke. However I would prefer an official package, especially if
suggesting this link to other people.
Original comment by christop...@gmail.com
on 18 Nov 2011 at 10:04
Original issue reported on code.google.com by
adamsc@gmail.com
on 13 Apr 2011 at 1:48