Changeset 65
- Timestamp:
- 03/12/06 20:07:50 (6 years ago)
- Location:
- pysyck/trunk
- Files:
-
- 2 modified
-
README.txt (modified) (2 diffs)
-
setup.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pysyck/trunk/README.txt
r64 r65 66 66 more information. 67 67 68 .. _the source code: http:// trac.xitology.org/pysyck/browser/68 .. _the source code: http://pyyaml.org/browser/pysyck/ 69 69 70 70 Quick Example … … 881 881 ======= 882 882 883 * PySyck-0.6 0.1 (2006-03-XX):883 * PySyck-0.61.1 (2006-03-XX): 884 884 885 885 - ``setup.py``: check if ``syck.h`` is present, complain if it doesn't. -
pysyck/trunk/setup.py
r50 r65 1 1 2 2 NAME = 'PySyck' 3 VERSION = '0. 55.1'3 VERSION = '0.61.1' 4 4 DESCRIPTION = "Python bindings for the Syck YAML parser and emitter" 5 5 LONG_DESCRIPTION = """\ … … 12 12 LICENSE = "BSD" 13 13 PLATFORMS = "Any" 14 URL = "http:// xitology.org/pysyck/"15 DOWNLOAD_URL = URL + "%s-%s.tar.gz" % (NAME, VERSION)14 URL = "http://pyyaml.org/wiki/PySyck" 15 DOWNLOAD_URL = "http://pyyaml.org/download/pysyck/%s-%s.tar.gz" % (NAME, VERSION) 16 16 CLASSIFIERS = [ 17 17 "Development Status :: 3 - Alpha", … … 36 36 37 37 import os 38 #home = os.environ.get('HOME', '')39 38 40 39 CHECK_SYCK = """ … … 114 113 ext_modules=[ 115 114 Extension('_syck', ['ext/_syckmodule.c'], 116 # include_dirs=[ '../../include', '%s/include' % home, '/usr/local/include'],117 # library_dirs=[ '../../lib', '%s/lib' % home, '/usr/local/include'],115 # include_dirs=[], # do not uncomment this, edit setup.cfg instead. 116 # library_dirs=[], # do not uncomment this, edit setup.cfg instead. 118 117 libraries=['syck'], 119 118 ),
