Changeset 65 for pysyck/trunk/setup.py
- Timestamp:
- 03/12/06 20:07:50 (7 years ago)
- File:
-
- 1 edited
-
pysyck/trunk/setup.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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 ),
Note: See TracChangeset
for help on using the changeset viewer.
