码迷,mamicode.com
首页 > 编程语言 > 详细

python模块发布

时间:2018-04-18 19:17:06      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:print   rip   pre   des   int   AC   python   执行   coding   

将setup.py和其他文件放在一个目录下,进入目录 执行python setup.py sdist 命令

 

setup.py

 

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date    : 2018-04-18 16:38:40
# @Author  : blackstone (971406187@qq.com)
# @Do      :


from distutils.core import setup

#print dir(setup)
setup(

    name= ‘Test‘,

    version= ‘1.0.0‘,

    #关联模块

    py_modules =[‘Test‘],

    author= ‘blackstone‘,

    author_email=‘97146187@qq.com‘,

    url=‘1‘,

    description= ‘发布模块测试‘

)

 

python模块发布

标签:print   rip   pre   des   int   AC   python   执行   coding   

原文地址:https://www.cnblogs.com/heishi/p/8875993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!