您的位置:首页 > 编程语言 > Python开发

python写setup.py install 文件

2012-11-14 13:36 651 查看

原文:https://github.com/stephenmcd/django-email-extras/blob/master/setup.py

from setuptools import setup

setup(    name = "django-email-extras",    version = __import__("email_extras").__version__,    author = "Stephen McDonald",    author_email = "steve@jupo.org",    description = "A Django reusable app providing the ability to "                  "send PGP encrypted and multipart emails using "                  "the Django templating system.",    long_description = open("README.rst").read(),    url = "https://github.com/stephenmcd/django-email-extras",    packages = ["email_extras",],    zip_safe = False,    include_package_data = True,    install_requires=["python-gnupg", "sphinx-me",],    classifiers = [        "Development Status :: 5 - Production/Stable",        "Environment :: Web Environment",        "Intended Audience :: Developers",        "Operating System :: OS Independent",        "Programming Language :: Python",        "Framework :: Django",        "Topic :: Communications :: Email",        "Topic :: Security :: Cryptography",    ])
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: