-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
214 lines (202 loc) · 8.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
---
layout: default
title: An easy-to-use build automation tool for Python
---
<div class="row">
<div class="col-lg-12">
<h1>
<span class="glyphicon glyphicon-star" style="color: gold"></span> PyBuilder
</h1>
<p>
<em>PyBuilder</em> is a software build automation tool written in pure Python mainly
targeting Python ecosystem. It is based on the concept of dependency-based programming but also comes
along with powerful plugin mechanism that allows the construction of build life-cycles similar to those
known
from other famous build tools like <em>Apache Maven</em> and <em>Gradle</em>.
</p>
<p>
<em>PyBuilder</em> runs on Python <strong>3.7 to 3.12 and PyPy</strong>.
Every commit is tested via
<a href="https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml">GitHub Actions</a>
on CPython 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and PyPy on Linux, MacOS
(with and without Homebrew) and Windows.
</p>
<p>
<small>v0.13.6 is the last version supporting Python 3.6.</small>
</p>
<p>
<small>v0.12.x still supports Python 2.7, and 3.5 but is no longer maintained.</small>
</p>
<p>
<small>v0.11.x still supports Python 2.6, 3.3 and 3.4 but is no longer maintained.</small>
</p>
<p>
<em>PyBuilder</em>
is licensed under
<a href="https://github.com/pybuilder/pybuilder/blob/master/LICENSE">Apache 2.0 License</a>
and is hosted on
<a href="https://github.com/pybuilder/pybuilder">github.com/pybuilder/pybuilder</a>.
</p>
<p>
<iframe src="https://ghbtns.com/github-btn.html?user=pybuilder&repo=pybuilder&type=star&count=true"
loading="lazy" frameborder="0" scrolling="0" width="110px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=pybuilder&repo=pybuilder&type=fork&count=true"
loading="lazy" frameborder="0" scrolling="0" width="110px" height="20px"></iframe>
<a href="https://twitter.com/intent/follow?screen_name=pybuilder_">
<img src="https://img.shields.io/twitter/follow/pybuilder_?label=Follow%20PyBuilder&style=social"
loading="lazy" alt="Follow PyBuilder on Twitter"/></a>
<a href="https://app.gitter.im/#/room/#pybuilder_pybuilder:gitter.im">
<img src="https://img.shields.io/gitter/room/pybuilder/pybuilder?logo=gitter"
loading="lazy" alt="PyBuilder Gitter Room"/></a>
<a href="https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml">
<img src="https://img.shields.io/github/actions/workflow/status/pybuilder/pybuilder/pybuilder.yml?branch=master"
loading="lazy" alt="PyBuilder GitHub Actions Build Status"/></a>
<a href="https://coveralls.io/github/pybuilder/pybuilder">
<img src="https://img.shields.io/coveralls/github/pybuilder/pybuilder/master?logo=coveralls"
loading="lazy" alt="PyBuilder Coveralls Build"/></a>
</p>
<p>
<a href="https://pypi.org/project/pybuilder/">
<img src="https://img.shields.io/pypi/v/pybuilder?logo=pypi"
loading="lazy" alt="PyBuilder Version"></a>
<a href="https://pypi.org/project/pybuilder/">
<img src="https://img.shields.io/pypi/pyversions/pybuilder?logo=pypi"
loading="lazy" alt="PyBuilder Python Versions"></a>
<a href="https://pypi.org/project/pybuilder/">
<img src="https://img.shields.io/pypi/dd/pybuilder?logo=pypi"
loading="lazy" alt="PyBuilder Daily Downloads"></a>
<a href="https://pypi.org/project/pybuilder/">
<img src="https://img.shields.io/pypi/dw/pybuilder?logo=pypi"
loading="lazy" alt="PyBuilder Weekly Downloads"></a>
<a href="https://pypi.org/project/pybuilder/">
<img src="https://img.shields.io/pypi/dm/pybuilder?logo=pypi"
loading="lazy" alt="PyBuilder Monthly Downloads"></a>
</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-lg-12">
<h2>
<span class="glyphicon glyphicon-flash" style="color: silver"></span> News
</h2>
{% assign top_post = site.categories.news[0] %}
<div class="row">
<div class="col-lg-12">
<h3>
<a href="{{ top_post.url | rel_canonical_url }}">{{ top_post.title }}</a>
</h3>
{{ top_post.excerpt }}
</div>
</div>
{% assign news_count = 1 %}
{% for post in site.posts %}
{% if news_count == site.news_posts_max %}
{% break %}
{% endif %}
{% if post.url != top_post.url %}
<div class="row">
<div class="col-lg-12">
<h3>
<a href="{{ post.url | rel_canonical_url }}">{{ post.title }}</a>
</h3>
{{ post.excerpt }}
</div>
</div>
{% assign news_count = news_count | plus:1 %}
{% endif %}
{% endfor %}
</div>
</div>
<hr/>
<div class="row">
<div class="col-lg-6">
<div class="row">
<div class="col-lg-12">
<h2>
<span class="glyphicon glyphicon-wrench" style="color: steelblue"></span>
Get started
</h2>
<ul class="tabs" data-persist="true">
<li>
<a href="#startproject">New project</a>
</li>
<li>
<a href="#checkoutbuild">Existing project</a>
</li>
</ul>
<div class="tabcontents">
<div id="startproject">
<pre><code>
#!/bin/sh
pip install pybuilder
# If you want the bleeding edge
# (we release after every commit)
# pip install --pre pybuilder
pyb --start-project
pyb publish
</code></pre>
</div>
<div id="checkoutbuild">
<pre><code>
git clone https://github.com/twentybn/GulpIO
cd GulpIO
python -m venv venv
source venv/bin/activate
pip install pybuilder
# If you want the bleeding edge
# (we release after every commit)
# pip install --pre pybuilder
pyb
</code></pre>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>
<span class="glyphicon glyphicon-cloud-download" style="color: lightblue"></span>
Install PyBuilder
</h2>
<div align="left"><em>PyBuilder</em> is available on <a
href="https://pypi.org/project/pybuilder/">PyPI</a>
</div>
<pre><code>pip install pybuilder</code></pre>
<p>
We recommend using <em>virtualenv</em>.
Please see the <a href="/documentation/installation">dedicated installation page</a>.
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-lg-12">
<h2>
<span class="glyphicon glyphicon-book" style="color: brown"></span>
Read the Tutorial
</h2>
<p>
The tutorial shows you how to get started using
<em>PyBuilder</em>
for your Python project including unittests, coverage and distutils.
</p>
<p>
<a class="btn btn-primary btn-small" href="/documentation/tutorial">Tutorial »</a>
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>
<span class="glyphicon glyphicon-film" style="color: gray"></span>
Watch the Presentation
</h2>
<div class="embed-responsive embed-responsive-16by9">
<lite-youtube videoid="iQU18hAjux4" autoload></lite-youtube>
</div>
</div>
</div>
</div>
</div>