2012-10-12 16:37:12 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#coding:utf8
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
import py2exe #@UnusedImport
|
|
|
|
from setuptools import find_packages
|
|
|
|
import syncplay
|
|
|
|
|
|
|
|
common_info = dict(
|
|
|
|
name = 'Syncplay',
|
|
|
|
version = syncplay.version,
|
|
|
|
author = 'Tomasz Kowalczyk, Uriziel',
|
|
|
|
author_email = 'code@fluxid.pl, urizieli@gmail.com',
|
|
|
|
description = 'Syncplay',
|
|
|
|
packages = find_packages(exclude=['venv']),
|
|
|
|
install_requires = ['Twisted>=11.1'],
|
|
|
|
)
|
|
|
|
|
|
|
|
info = dict(
|
|
|
|
common_info,
|
2012-10-12 17:06:55 +00:00
|
|
|
console = [{"script":"syncplayClient.py","icon_resources":[(1,"resources\\icon.ico")]}, 'syncplayServer.py'],
|
2012-10-12 16:37:12 +00:00
|
|
|
options = {'py2exe': {
|
|
|
|
'includes': 'cairo, pango, pangocairo, atk, gobject',
|
|
|
|
'optimize': 2,
|
|
|
|
'compressed': 1
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
setup(**info)
|
|
|
|
|