Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.py « growl « osx « src - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80e56b14b3f926c845c791447e675ea1b1f62270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from distutils.core import setup, Extension
import sys

_growl = Extension('_growl',
                    extra_link_args = ["-framework","CoreFoundation"],
                    sources = ['libgrowl.c'])
_growlImage = Extension('_growlImage',
                        extra_link_args = ["-framework","Cocoa"],
                        sources = ['growlImage.m'])

if sys.platform.startswith("darwin"):
    modules = [_growl, _growlImage]
else:
    modules = []

setup(name="py-Growl",
      version="0.0.7",
      description="Python bindings for posting notifications to the Growl daemon",
      author="Mark Rowe",
      author_email="bdash@users.sourceforge.net",
      url="http://growl.info",
      py_modules=["Growl"],
      ext_modules = modules )


# vim: se ts=3: