Python制作egg文件包
2018-04-03 本文已影响0人
不_一
下面开始egg文件的制作:
在要打包的文件夹父目录中新建setup.py
setup.py
#coding=utf8
from setuptools import setup, find_packages
setup(
name = "eggtest",
version = "0.1",
packages = find_packages(),
description = "egg test demo",
long_description = "egg test demo",
author = "buyi",
author_email = "ziwu361@163.com",
license = "GPL",
keywords = ("test", "egg"),
platforms = "Independant",
url = "http://blog.csdn.net/hong201/",
)