File tree 4 files changed +29
-13
lines changed
4 files changed +29
-13
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
- - " 3.6"
3
+ - ' 3.6'
4
4
cache : pip
5
5
install :
6
- - pip install -r dev-requirements.txt
7
- - pip install -e .
6
+ - pip install -r dev-requirements.txt
7
+ - pip install -e .
8
8
script :
9
- - make tests
10
- - make docs
9
+ - make tests
10
+ - make docs
11
+ deploy :
12
+ provider : pypi
13
+ user : tillahoffmann
14
+ password :
15
+ secure : o7ANxRWNMV/RlwEw37lvkOngE9UUNQag+gs4PmGy9S8rawKtx3WMf7Wu1kUvVfGYBeAR5cFEpezkEpggAYjmnFVG4HtFCQuvXh8jvfBlYsqtruEWC2YS5JOTI9yCEx3FEpcnsyqxkB7t5TAP5zJxLAZXwH0w60ORpNHoVBlzc0xy0QgUmbmcfFuHJqIqN0qRxGMXwFyakpxHrZP3irD8iBkLgNPY96yy9WqQFIZGCzyQalzsPcjVKoqJsjWjBMaG91u46izHC+8+zHwlmmG7gHjS5L/Zl7TjTlzgt1eGYOKXlHw7TDcPNoL4V5ldB5PX/dh+0LvmoCYmg7TzY2gCD5U0nPapEeWbYWoPRmJXLxRt9pjZmnIsBmluTnDqO18PBVfZw0rupRUQhl2APvSMzqxTAS4QHYxmO5739xYrkL21E4aX+V98FxWL4ujAxNFqHNWun+RKsQN5PO5wRSpQm0GQhUU+agVivBAQFvxgFlVZGaKxOrGDBOopMpgMZeKXc2E7Rle6qEcmTw4OgTUunjOE8YM5yyQjahtJ7zs0IjAx2p8qh2wKqRFZxYQx22adUWltr79YmrQrqJK+a1o+rcVkxvNOsiwRYFvH0HZhaYBOAabJAd7km6nlPEChKmYdqnpvE3JXPHdTyJVVwOo3au5r1+JPO45+OZZQTUOBGYM=
Original file line number Diff line number Diff line change 1
- twine==1.9.1
1
+ pyzmq==16.0.3
2
+
3
+ twine>=1.11.0
4
+ setuptools>=38.6.0
5
+
2
6
sphinx==1.6.3
3
7
sphinx_rtd_theme==0.2.4
8
+ nbsphinx==0.2.16
9
+ pandoc==1.0.2
10
+
4
11
pytest==3.2.1
5
12
pytest-cov==2.5.1
6
13
pylint==1.8.1
14
+
7
15
jupyter>=1.0.0
8
- ipyparallel==6.0.2
9
- tensorflow==1.4.0
10
- nbsphinx==0.2.16
11
- pandoc==1.0.2
12
16
scikit-learn==0.19.1
13
17
scipy==1.0.0
14
18
matplotlib==2.1.0
15
19
ipywidgets==7.0.4
16
20
tqdm==4.19.4
17
21
line_profiler==2.0
18
- pyzmq==16.0.3
19
22
imageio==2.2.0
Original file line number Diff line number Diff line change 21
21
if sys .version_info [0 ] < 3 :
22
22
raise RuntimeError ("pythonflow requires python3 but you are using %s" % sys .version )
23
23
24
+ with open ('README.md' ) as fp :
25
+ long_description = fp .read ()
26
+
24
27
with open ("version.json" ) as fp :
25
28
kwargs = json .load (fp ) # pylint: disable=invalid-name
26
29
27
- setup (packages = find_packages (), ** kwargs )
30
+ setup (
31
+ packages = find_packages (),
32
+ long_description = long_description ,
33
+ long_description_content_type = "text/markdown" ,
34
+ ** kwargs ,
35
+ )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pythonflow" ,
3
3
"description" : " Dataflow programming for python" ,
4
- "version" : " 0.1.8 " ,
4
+ "version" : " 0.1.9 " ,
5
5
"author" : " Till Hoffmann" ,
6
6
"author_email" : " till@spotify.com" ,
7
7
"license" : " License :: OSI Approved :: Apache Software License" ,
You can’t perform that action at this time.
0 commit comments