Skip to content

Commit 8e414d4

Browse files
authored
Merge pull request #18 from pddg/release-v0.1.0
Add deployment for pypi
2 parents 95c9110 + 1082ed8 commit 8e414d4

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,15 @@ install:
2020
script:
2121
- tox
2222

23+
deploy:
24+
provider: pypi
25+
user: pddg
26+
password:
27+
secure: "XPQBpsTwd0PmBndBlBBmMvwy//ySXfqvZl66yQlYv8dwxQq6l1gCJ+0YtnX626Xhr5jGoJ5JmsJalZySe4MMSvfdwzhpGC2Olc1b/ALa3MBP/qAm9+VwnyQGJV4YNRZg6thtoDtxNTtmasdy+YYPxzjuYOL0q/voiSiAwNVv45zjMCu3V8obnrL44nsIUWTsCH2KO7G0bb7VNnNETZrwDHOq6R0KNMLmFhe1VQpMDNWBEtggGt4mj4ZWo/w0axIQIRGFP9xkqBFJrQRJ1wAcgVUUfPp4rdmrQopwXc1aAhCwGSKtN7VknXNQYXfpSLnucpoJRz1+QXQQzA1KCMcCfVUkXLi7Ykzrj8sB6k19BCjgVCGB5wmUCZjFJVFW1Zj/RmXdPblkEeFxRaOpZiumRdMA7I9+g+5KTGMNowWQpPZ48yNzVQLWAYz+M32HWUjPIgcQ4cg0a0mzC00D37/CfEV84ItQx9BWY1BZqVi1bF3Yd5M46NSeV4LvqvZ2jLlqwNouxzfeZJXe/cBVDnfZwySlb1rIjrcdJK2j+jX6/00KaBb8digPp3vNEoH7fPjkHse5dmb4xiezTzOgXU4BmqOZfjq5cKq6Cc3TlGEeMinN1DBmRtvKwo6wlzKYq1Dwc3+4j0uwTOEOJULBfx3s1e5/EdLTXkGZ3LyLbJjNguk="
28+
distributions: 'sdist bdist_wheel'
29+
on:
30+
tags: true
31+
python: '3.7'
32+
2333
notifications:
2434
email: false

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# uroboros
22

3-
[![Build Status](https://travis-ci.com/pddg/uroboros.svg?branch=master)](https://travis-ci.com/pddg/uroboros)
3+
[![Build Status](https://travis-ci.com/pddg/uroboros.svg?branch=master)](https://travis-ci.com/pddg/uroboros) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/uroboros.svg)](https://pypi.python.org/pypi/uroboros/) [![PyPI version shields.io](https://img.shields.io/pypi/v/uroboros.svg)](https://pypi.python.org/pypi/uroboros/)
4+
[![GitHub license](https://img.shields.io/github/license/pddg/uroboros.svg)](https://github.com/pddg/uroboros/blob/master/LICENSE)
5+
6+
47

58
Simple framework for building scalable CLI tool.
69

@@ -25,9 +28,7 @@ This framework currently under development. Please be careful to use.
2528
Install uroboros
2629

2730
```bash
28-
$ git clone https://github.com/pddg/uroboros
29-
$ cd /path/to/uroboros
30-
$ pip install -e .
31+
$ pip install uroboros
3132
```
3233

3334
## How to use
@@ -111,6 +112,14 @@ You can see other examples in [examples](examples).
111112

112113
## Develop
113114

115+
First, clone this repository and install uroboros with editable option.
116+
117+
```bash
118+
$ git clone https://github.com/pddg/uroboros
119+
$ cd /path/to/uroboros
120+
$ pip install -e .
121+
```
122+
114123
Use `Pipenv` for lint and test.
115124

116125
```bash

0 commit comments

Comments
 (0)