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

setup.py « osx « src - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eaeb1bb944343477214fb42926cf42208bcc7cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup, Extension

setup(
	name = 'Gajim',
	version = '0.11',
	description = 'A full featured Jabber client',
	author = 'Gajim Development Team',
	url = 'http://www.gajim.org/',
	download_url = 'http://www.gajim.org/downloads.php',
	license = 'GPL',
	
	ext_modules=[
	Extension('idle', ['idle.c'],
			  extra_compile_args=['-Wall'],
			  extra_link_args=['-framework', 'IOKit', '-framework', 'Carbon']),
	Extension('nsapp', ['nsapp.m'],
			  extra_compile_args=['-Wall'],
			  extra_link_args=['-framework', 'AppKit', '-framework', 'Cocoa']),
	]
)