diff options
author | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-03-06 16:18:45 +0100 |
---|---|---|
committer | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-03-06 16:18:45 +0100 |
commit | eb406aada026eeaa5254787cf69b7c91ccca1f5a (patch) | |
tree | 4e1f3b91993eedfdb304b6d6c5fa2bcdcb7ae65c /setup.py | |
parent | Optimization: if gamma is 1.0 don't eval image (diff) | |
parent | Merge branch 'master' of github.com:ciromattia/kcc (diff) | |
download | kcc-eb406aada026eeaa5254787cf69b7c91ccca1f5a.tar.gz kcc-eb406aada026eeaa5254787cf69b7c91ccca1f5a.tar.bz2 kcc-eb406aada026eeaa5254787cf69b7c91ccca1f5a.zip |
Merge branch 'master' into kcc-gamma
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.py b/setup.py index 51c3389..dcaedf6 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ """ -py2app/py2exe build script for MyApplication. +py2app/py2exe build script for KCC. Will automatically ensure that all build prerequisites are available via ez_setup @@ -8,10 +8,10 @@ Usage (Mac OS X): python setup.py py2app Usage (Windows): - python setup.py py2exe + python setup.py build """ -import ez_setup -ez_setup.use_setuptools() +from ez_setup import use_setuptools +use_setuptools() import sys from setuptools import setup @@ -71,7 +71,7 @@ setup( 'Intended Audience :: End Users/Desktop', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 2.7', 'Topic :: Multimedia :: Graphics :: Graphics Conversion', 'Topic :: Utilities' ], |