python的构建工具——setup.py文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的构建工具——setup.py文件相关的知识,希望对你有一定的参考价值。
一、构建工具setup.py的应用场景
在安装python的相关模块和库时,我们一般使用“pip install 模块名”或者“python setup.py install”,前者是在线安装,会安装该包的相关依赖包;后者是下载源码包然后在本地安装,不会安装该包的相关依赖包。所以在安装普通的python包时,利用pip工具相当简单。但是在如下场景下,使用python setup.py install会更适合需求:
在编写相关系统时,python 如何实现连同依赖包一起打包发布? 假如我在本机开发一个程序,需要用到python的redis、mysql模块以及自己编写的redis_run.py模块。我怎么实现在服务器上去发布该系统,如何实现依赖模块和自己编写的模块redis_run.py一起打包,实现一键安装呢?同时将自己编写的redis_run.py模块以exe文件格式安装到python的全局执行路径C:\Python27\Scripts下呢? |
在这种应用场景下,pip工具似乎派不上了用场,只能使用python的构建工具setup.py了,使用此构建工具可以实现上述应用场景需求,只需在 setup.py 文件中写明依赖的库和版本,然后到目标机器上使用python setup.py install安装。
二、setup.py介绍
1 from setuptools import setup, find_packages
2
3 setup(
4 name = "test",
5 version = "1.0",
6 keywords = ("test", "xxx"),
7 description = "eds sdk",
8 long_description = "eds sdk for python",
9 license = "MIT Licence",
10
11 url = "http://test.com",
12 author = "test",
13 author_email = "[email protected]",
14
15 packages = find_packages(),
16 include_package_data = True,
17 platforms = "any",
18 install_requires = [],
19
20 scripts = [],
21 entry_points = {
22 ‘console_scripts‘: [
23 ‘test = test.help:main‘
24 ]
25 }
26 )
setup.py各参数介绍:
--name 包名称 其实我们可以将包统一放在一个src目录中,另外,这个包内可能还有aaa.txt文件和data数据文件夹。另外,也可以排除一些特定的包 find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]) --install_requires = ["requests"] 需要安装的依赖包 |
下列entry_points中: console_scripts 指明了命令行工具的名称;在“redis_run = RedisRun.redis_run:main”中,等号前面指明了工具包的名称,等号后面的内容指明了程序的入口地址。
1 entry_points={‘console_scripts‘: [
2 ‘redis_run = RedisRun.redis_run:main‘,
3 ]}
这里可以有多条记录,这样一个项目就可以制作多个命令行工具了,比如:
1 setup(
2 entry_points = {
3 ‘console_scripts‘: [
4 ‘foo = demo:test‘,
5 ‘bar = demo:test‘,
6 ]}
7 )
三、setup.py的项目示例代码
1 #!/usr/bin/env python
2 # coding=utf-8
3
4 from setuptools import setup
5
6 ‘‘‘
7 把redis服务打包成C:\Python27\Scripts下的exe文件
8 ‘‘‘
9
10 setup(
11 name="RedisRun", #pypi中的名称,pip或者easy_install安装时使用的名称
12 version="1.0",
13 author="Andreas Schroeder",
14 author_email="[email protected]",
15 description=("This is a service of redis subscripe"),
16 license="GPLv3",
17 keywords="redis subscripe",
18 url="https://ssl.xxx.org/redmine/projects/RedisRun",
19 packages=[‘RedisRun‘], # 需要打包的目录列表
20
21 # 需要安装的依赖
22 install_requires=[
23 ‘redis>=2.10.5‘,
24 ‘setuptools>=16.0‘,
25 ],
26
27 # 添加这个选项,在windows下Python目录的scripts下生成exe文件
28 # 注意:模块与函数之间是冒号:
29 entry_points={‘console_scripts‘: [
30 ‘redis_run = RedisRun.redis_run:main‘,
31 ]},
32
33 # long_description=read(‘README.md‘),
34 classifiers=[ # 程序的所属分类列表
35 "Development Status :: 3 - Alpha",
36 "Topic :: Utilities",
37 "License :: OSI Approved :: GNU General Public License (GPL)",
38 ],
39 # 此项需要,否则卸载时报windows error
40 zip_safe=False
41 )
参考博客:
http://blog.csdn.net/lynn_kong/article/details/17540207
http://blog.csdn.net/pfm685757/article/details/48651389
http://blog.csdn.net/langb2014/article/details/53114341
以上是关于python的构建工具——setup.py文件的主要内容,如果未能解决你的问题,请参考以下文章
如何在不使用 setup.py 文件的情况下构建源代码分发?
Python Setup.py Build_Ext --inplace
Python模块发布构建安装到Python本地副本中,在终端键入 sudo python3 setup.py install。无法识别sudo