This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
100 lines (83 sloc)
2.55 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| from __future__ import with_statement | |
| from setuptools import setup, find_packages | |
| from distutils import log | |
| from collections import defaultdict | |
| from os.path import join | |
| import os | |
| import apaf | |
| from apaf import config | |
| APP = [os.path.join('apaf', 'main.py')] | |
| # static files | |
| DATA_FILES = [(root, [join(root, file) for file in files]) | |
| for root, _, files in os.walk(join('datadir'))] | |
| PLATFORM_OPTIONS = defaultdict(dict) | |
| ## DARWIN options. ## | |
| if config.platform == 'darwin': | |
| import operator | |
| import py2app | |
| from apaf.ui.darwin import OSXPatchCommand | |
| else: | |
| OSXPatchCommand = None | |
| OPTIONS_PY2APP = dict( | |
| argv_emulation = True, | |
| iconfile=join(config.drawable_dir, 'logo.icns'), | |
| plist = dict( | |
| LSUIElement=True, # Agent Only App (No icon in dock) | |
| ), | |
| includes = ['txtorcon', 'apaf.run.darwin'], | |
| # install_requires=['py2app>=0.6.4'], | |
| ) | |
| PLATFORM_OPTIONS['darwin'] = dict( | |
| cmdclass={ | |
| 'osx_patch': OSXPatchCommand, | |
| }, | |
| ) | |
| ## WINDOWS otions. ## | |
| if config.platform == 'win32': | |
| import py2exe | |
| #Generate the blob module for static files, too. | |
| from apaf.blobber import create_blobbone | |
| create_blobbone(config.data_dir, | |
| join(config.package_dir, 'blobbone.py')) | |
| PLATFORM_OPTIONS['win32'] = dict( | |
| zipfile = None, | |
| console = APP, | |
| # windows = APP, # run as window, not console application. | |
| ) | |
| OPTIONS_PY2EXE = dict( | |
| bundle_files = 1, | |
| compressed = True, | |
| optimize = 2, | |
| includes =['apaf.run.win32'] | |
| # install_requires=['py2exe>=0.6.9', 'pywin32'], | |
| ) | |
| ## linux options ## | |
| if config.platform == 'linux2': | |
| DATA_FILES = [(join('share', config.appname, dest), source) | |
| for dest, source in DATA_FILES] | |
| ## manual page ## | |
| mandir = join('docs', 'build', 'man') | |
| if os.path.exists(join(mandir, 'apaf.1')): | |
| DATA_FILES.append((join('share', 'man', 'man1'), | |
| [join(mandir, 'apaf.1')])) | |
| ## Dependencies ## | |
| requirements = None | |
| with open('requirements.txt') as dependencies: | |
| requirements = [dependency.strip() for dependency in dependencies] | |
| setup( | |
| name=config.appname, | |
| description=config.description, | |
| version=apaf.__version__, | |
| author=apaf.__author__, | |
| author_email=apaf.__email__, | |
| url=apaf.__url__, | |
| app=APP, | |
| data_files=DATA_FILES, | |
| options=dict(py2app=OPTIONS_PY2APP, | |
| py2exe=OPTIONS_PY2EXE, | |
| ), | |
| install_requires=open('requirements.txt').readlines(), | |
| entry_points=dict(console_scripts=['apaf = apaf.main']), | |
| packages=find_packages(exclude=['test']), | |
| **PLATFORM_OPTIONS[config.platform] | |
| ) |