| 1 |
""" |
|---|
| 2 |
This is a setup.py script generated by py2applet |
|---|
| 3 |
|
|---|
| 4 |
Usage: |
|---|
| 5 |
python2.5 setup.py py2app |
|---|
| 6 |
|
|---|
| 7 |
Copyright 2007 Shu Ning Bian freespace@gmail.com |
|---|
| 8 |
Licensed for distribution under the GPL version 2, check COPYING for details |
|---|
| 9 |
""" |
|---|
| 10 |
|
|---|
| 11 |
from setuptools import setup,find_packages |
|---|
| 12 |
import sys |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
import mactorii |
|---|
| 16 |
|
|---|
| 17 |
APP = ['mactorii.py'] |
|---|
| 18 |
OPTIONS = {'argv_emulation': True, 'iconfile': 'mactorii.icns'} |
|---|
| 19 |
DATA_FILES = ['resizer.jpg'] |
|---|
| 20 |
|
|---|
| 21 |
if sys.platform == "darwin": |
|---|
| 22 |
SETUP_REQUIRES=['py2app'] |
|---|
| 23 |
else: |
|---|
| 24 |
SETUP_REQUIRES=[] |
|---|
| 25 |
|
|---|
| 26 |
setup( |
|---|
| 27 |
version=mactorii.version, |
|---|
| 28 |
description='Image browser with sort, cluster ability based on wavelet transforms', |
|---|
| 29 |
author='Shu Ning Bian', |
|---|
| 30 |
author_email='freespace@gmail.com', |
|---|
| 31 |
url='http://trac.pictorii.com/mactorii/', |
|---|
| 32 |
data_files = DATA_FILES, |
|---|
| 33 |
app=APP, |
|---|
| 34 |
name="mactorii", |
|---|
| 35 |
options={'py2app': OPTIONS}, |
|---|
| 36 |
py_modules = ['mactorii', 'config','wavelet'], |
|---|
| 37 |
setup_requires = SETUP_REQUIRES, |
|---|
| 38 |
license = "Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License", |
|---|
| 39 |
keywords = "image, browser, wavelet, sort", |
|---|
| 40 |
) |
|---|