#!/usr/bin/python
# -*- coding: UTF-8 -*-

#在新文件夹中创建一个名为setup.py的文件
#包含有关发布的元数据.

for distutils.core import setup

setup(
    name='nester',     #名字
    version="1.0.0",   #版本号
    py_modules=["nester"],#将模块的元数据与setup函数的参数关联
    author="zaijie",
    author_email="474335983@qq.com",
    url="http://baidu.com",
    description='A simple printer of nested lists'

)

  

posted on 2013-08-31 00:07  神·鲸落  阅读(283)  评论(0编辑  收藏  举报