Skip to content

Commit

Permalink
打包完成。
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricporter committed Jul 30, 2012
1 parent a754c27 commit e350a61
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
*.jpg
*.so
Images/
build/
dist/
MANIFEST
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# author: Hua Liang [ Stupid ET ]
# email: [email protected]
# website: http://EverET.org
#

from distutils.core import setup, Extension

NAME = "EffectLab"
DESCRIPTION = "Python Image Processing Effect Lab"
AUTHOR = "Hua Liang [Stupid ET]"
HOMEPAGE = "http://everet.org/2012/07/effectlab.html"
DOWNLOAD_URL = "https://github.com/cedricporter/EffectLab/zipball/master"

setup(name = NAME,
version = '1.0',
author = 'Hua Liang [Stupid ET]',
author_email = '[email protected]',
url = HOMEPAGE,
download_url = DOWNLOAD_URL,
description = DESCRIPTION,
long_description = DESCRIPTION,
packages = ['EffectLab'],
license = "Python (MIT style)",
platforms = "Python 1.5.2 and later and PIL 1.1.7 and later.",
ext_modules = [Extension('EffectLab.EffectLabCore', ['EffectLab/core.c']),
]
)

0 comments on commit e350a61

Please sign in to comment.