Changeset 227 for pyyaml/trunk/setup_with_libyaml.py
- Timestamp:
- 08/19/06 15:37:57 (7 years ago)
- File:
-
- 1 moved
-
pyyaml/trunk/setup_with_libyaml.py (moved) (moved from pyyaml/trunk/setup_ext.py) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/setup_with_libyaml.py
r195 r227 1 2 from setup import * 1 3 2 4 from distutils.core import setup … … 4 6 from Pyrex.Distutils import build_ext 5 7 6 setup( 7 name = '_yaml', 8 ext_modules=[ 9 Extension("_yaml", ["ext/_yaml.pyx"], libraries=['yaml']), 10 ], 11 cmdclass = {'build_ext': build_ext} 12 ) 8 if __name__ == '__main__': 13 9 10 setup( 11 name=NAME, 12 version=VERSION, 13 description=DESCRIPTION, 14 long_description=LONG_DESCRIPTION, 15 author=AUTHOR, 16 author_email=AUTHOR_EMAIL, 17 license=LICENSE, 18 platforms=PLATFORMS, 19 url=URL, 20 download_url=DOWNLOAD_URL, 21 classifiers=CLASSIFIERS, 22 23 package_dir={'': 'lib'}, 24 packages=['yaml'], 25 ext_modules=[ 26 Extension("_yaml", ["ext/_yaml.pyx"], libraries=['yaml']), 27 ], 28 29 cmdclass = {'build_ext': build_ext} 30 ) 31
Note: See TracChangeset
for help on using the changeset viewer.
