',# 简短描述long_description=open('README.md','r').read(),# 长描述(通常读取自README文件)long_description_content_type='text/markdown',# 长描述类型url='https://github.com/your_username/your_package',# 项目主页classifiers=[# 项目分类标签'Programming Language :: Python :: 3','License :...
读取requirements.txt文件,生成setup函数需要依赖包 4、long_description。从README.rst、README.txt或者READMEfile中生成long_description参数 Pbr的文件很简单,如下。配置之后会自动寻找目录下的setup.cfg文件,解析文件参数给setup.py使用。 setup.py 1 2 3 4 5 6 7 8 fromsetuptools import setup setuptools.setup...
setup.py文件内容如下: # coding:utf-8 from distutils.core import setup setup(name="test", # 项目名 version="1.0", description="测试发布压缩包步骤", long_description="第一次测试发布压缩包步骤", author="kiwi", author_email="761791958@qq.com", url="www.***.com", py_modules=["chap3....
long_description=long_description,# 包的详细介绍,一般在README.md文件内 long_description_content_type="text/markdown",url="https://github.com/Lvan826199/mwjApiTest",# 自己项目地址,比如github的项目地址 packages=setuptools.find_packages(),entry_points={"console_scripts":['mwjApiTest = mwjApiTe...
long_description=long_description, author='xiuqian li', author_email='981764793@qq.com', keywords=['shortid'], packages=['shortid'], license='MIT', classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 2', ...
long_description="完整的发送和接收消息模块", # 完整描述信息 author="小名叫小明", # 作者 author_email="328122186@qq.com", # 作者邮箱 url="nothing", # 主页 py_modules=["hm_message.send_message", setup函数的参数的详细信息,可以参阅官方网站: ...
long_description_content_type='text/markdown',# 长介绍使用的类型,我使用的是md url='https://github.com/lollipopnougat/pimm',# 包主页,一般是github项目主页 license='MIT',# 协议 keywords='pimm source manager')# 关键字 搜索用 可以看到setup.py调用了setuptools包中的setup方法,下面解释一下各个参数...
I recently uploaded my first package to PyPI and immediately discovered that I didn't get the nice long description that all the other packages have. As it turns out, this is because I didn't have a long_description field set when uploading, which was news to me. I feel that the the...
long_description="***",#对当前package的详细说明 author="yin",#作者姓名 author_email="72666*@qq.com",#作者邮箱 install_requires=['numpy'],#第三方依赖,这些依赖包会在程序安装的时候也会安装 zip_safe=False,#此项需要,否则卸载报windows error错误 ...
description="This is an Example Package",# 对项目的完整描述,使用 long_description。如果此字符串是 rst 格式的,PyPI 会自动渲染成 HTML 显示。long_description="详细描述内容,建议读进一片完整的READEME.md文档",# 不设置格式,默认是rst格式文档解读long_description_content_type='text/markdown',# 项目...