#!/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'
)
浙公网安备 33010602011771号