2008年3月7日 星期五

python setup.py

範例
setup.py

#!/usr/bin/env python

from distutils.core import setup

setup(name="pyDes",
version="1.2",
description="Pure python implementation of DES and TRIPLE DES encryption algorithm",
author="Todd Whiteman",
author_email="twhitema@gmail.com",
url="http://twhiteman.netfirms.com/des.html",
platforms=["All"],
keywords=["DES", "TRIPLE-DES", "ENCRYPTION", "ALGORITHM", "SECURITY"],
py_modules=["pyDes"]
)

沒有留言: