File tree Expand file tree Collapse file tree 3 files changed +21
-11
lines changed Expand file tree Collapse file tree 3 files changed +21
-11
lines changed Original file line number Diff line number Diff line change 1
- dist : xenial # required for Python >= 3.7
1
+ dist : xenial
2
2
language : python
3
3
python :
4
- - " 2.7"
5
- - " 3.6"
6
- - " 3.7"
7
- # command to install dependencies
4
+ - ' 2.7'
5
+ - ' 3.6'
6
+ - ' 3.7'
8
7
install :
9
- - pip install -r requirements.txt
10
- # command to run tests
8
+ - pip install -r requirements.txt
11
9
script :
12
- - pytest
13
- script :
14
- - pylint --rcfile=.pylintrc graphdiff/graphdiff.py
10
+ - pylint --rcfile=.pylintrc graphdiff/graphdiff.py
11
+ deploy :
12
+ provider : pypi
13
+ user : yeger00@gmail.com
14
+ password :
15
+ secure : B9TXEl+jBxXZ4pt3OdWcUo3OwSLOG+UlC5VRjtul4Z92IYppIvc38AAjG79faSRPX5weXNEkteZirwlIZHlmGLzZsxAlWHvmtct8Zwh7NqtWXILkhuhmLNY6NdsxwNdvDX25kO14P+G/zcx9floWXetmIRAcbHUuO0cCtoFl+HGOLtZ+klSBknUmOM7bSlDPNgJ0dAK/ArVAEOlN/sZ7zoIJFd+BLmt6HhBnG+hLplIJNpDfN57jbgPbUF3m0XppJIL8os/akAganwuVUgVO3tE4BDn7CgmfPh4AjPCScse9KUmblBp2ZvzEDwLuNHzgXT0+Mmil4boq6H4Ns/yMH7aiIHHKhwpgzHCgnaFmXwAzhAcwsv9qO7+xCCWmfETglN3APHjG73Cf7/LKp33ckKNt46dX2JRZXd6o2zB0l065YLCtAWkor0TtMj3QYttiwL+Odur+tAk3/ME1k9PHmZFWTQQ/GyCl+nAZ7uhmtpCVleJbxSluMjq1Y4cPBIar17oVhUfGcWVZB5HPXk0PJ49e0f7xrI3yw93JknTsbDSpdF3MHekeH0Qe596D1vEaPPjBoE0QLlyYW9yziPeFC1uAA2Pk5mfPwXci3BsY798L0ZxyCIf6XSuHChEffCKDmt9vYy6GNNsFXYNirjMhuTkYipQdUC6j/6ydocdb18o=
16
+ on :
17
+ tags : true
Original file line number Diff line number Diff line change @@ -9,11 +9,18 @@ Debian / Ubuntu:
9
9
sudo apt-get install libgraph-easy-perl
10
10
```
11
11
## Install
12
+
13
+ ### From source
12
14
```
13
15
git clone https://github.com/yeger00/graph-diff
14
16
pip install -e .
15
17
```
16
18
19
+ ### From PyPI
20
+ ```
21
+ pip install graphdiff
22
+ ```
23
+
17
24
## Generate and view diff
18
25
```
19
26
cat samples/before.dot | graph-easy --as boxart
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def run_tests(self):
22
22
23
23
setup (
24
24
name = "graphdiff" ,
25
- version = "0.0.1 " ,
25
+ version = "0.0.2 " ,
26
26
author = "Avi Yeger" ,
27
27
author_email = "yeger00@gmail.com" ,
28
28
description = "" ,
You can’t perform that action at this time.
0 commit comments