Skip to content

Commit c298b13

Browse files
committed
Initial import
0 parents  commit c298b13

File tree

5 files changed

+97
-0
lines changed

5 files changed

+97
-0
lines changed

.pyup.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# configure updates globally
2+
# default: all
3+
# allowed: all, insecure, False
4+
# update: all
5+
6+
# configure dependency pinning globally
7+
# default: True
8+
# allowed: True, False
9+
# pin: False
10+
11+
# set the default branch
12+
# default: empty, the default branch on GitHub
13+
# branch: dev
14+
15+
# update schedule
16+
# default: empty
17+
# allowed: "every day", "every week", ..
18+
# schedule: "every day"
19+
20+
# search for requirement files
21+
# default: True
22+
# allowed: True, False
23+
# search: True
24+
25+
# Specify requirement files by hand, default is empty
26+
# default: empty
27+
# allowed: list
28+
# requirements:
29+
# - requirements/staging.txt:
30+
# # update all dependencies and pin them
31+
# update: all
32+
# pin: True
33+
# - requirements/dev.txt:
34+
# # don't update dependencies, use global 'pin' default
35+
# update: False
36+
# - requirements/prod.txt:
37+
# # update insecure only, pin all
38+
# update: insecure
39+
# pin: True
40+
41+
# add a label to pull requests, default is not set
42+
# requires private repo permissions, even on public repos
43+
# default: empty
44+
label_prs: update
45+
46+
# assign users to pull requests, default is not set
47+
# requires private repo permissions, even on public repos
48+
# default: empty
49+
# assignees:
50+
# - carl
51+
# - carlsen
52+
53+
# configure the branch prefix the bot is using
54+
# default: pyup-
55+
branch_prefix: pyup/
56+
57+
# set a global prefix for PRs
58+
# default: empty
59+
pr_prefix: "[PyUP]"
60+
61+
# allow to close stale PRs
62+
# default: True
63+
close_prs: True

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM alpine:3.6
2+
3+
COPY requirements.pip /tmp/requirements.pip
4+
5+
RUN apk add --no-cache openssh git curl python3 ca-certificates gzip && \
6+
python3 -m ensurepip && \
7+
rm -r /usr/lib/python*/ensurepip && \
8+
pip3 install -r /tmp/requirements.pip && \
9+
rm -r /root/.cache

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Api Hackers
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# docker-twine
2+
3+
A lightweight twine docker image meant to perform PyPI uploads from CircleCI or GitlabCI

requirements.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
twine==1.9.1

0 commit comments

Comments
 (0)