Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
meld3 / setup.py
Size: Mime:
from distutils.core import setup, Extension
import os

if os.environ.get('USE_MELD3_EXTENSION_MODULES'):
    ext_modules=[Extension("meld3/cmeld3",
                           ["meld3/cmeld3.c"])]
else:
    # by default, allow people to install meld3 without building the
    # extension modules (meld works fine without them, it's just
    # slower).
    ext_modules = []

setup(
    name = 'meld3',
    version = '0.6.7',
    description = 'meld3 is an HTML/XML templating engine.',
    author = 'Chris McDonough',
    author_email =  'chrism@plope.com',
    license='ZPL 2.1',
    packages=['meld3'],
    url='http://svn.supervisord.org/meld3/     ',
    ext_modules=ext_modules,
)