OpenStack setuptools+pbr软件打包管理

本文详细介绍了如何使用setuptools和pbr进行OpenStack项目的打包管理。从创建testpack项目开始,讲解了setup.py、setup.cfg和requirements.txt等关键文件的作用,然后阐述了tar.gz、.egg和.whl三种打包格式的特点及生成方法。最后提到了通过`python setup.py --help-commands`查看更多打包命令。
摘要由CSDN通过智能技术生成

1. 创建一个testpack的项目

首先我们创建一个testpack的project,使用git初始化我们的代码仓库

stephen@stephen-OptiPlex-390:~/openstack/demo$ mkdir testpack
stephen@stephen-OptiPlex-390:~/openstack/demo$ cd testpack
stephen@stephen-OptiPlex-390:~/openstack/demo/testpack$ git init
Initialized empty Git repository in /home/stephen/openstack/demo/testpack/.git/

项目的目录结构:

stephen@stephen-OptiPlex-390:~/openstack/demo/testpack$ tree
.
├── LICENSE
├── README.md
├── requirements.txt
├── setup.cfg
├── setup.py
└── testpack
    └── __init__.py

1 directory, 6 files

这是一个简单的项目结构:
* testpack:存放项目源代码
* 软件包管理所需的文件:setup.py,setup.cfg, requirements.txt
* 其他文件,LICENSE, README.md

2. 软件包管理的文件

2.1 setup.py

#!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools

# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other m
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值