File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from distutils .core import setup
4
4
5
-
6
- def find_requirements ():
7
- ret = []
8
- with open ('requirements.pip' ) as f :
9
- for line in f :
10
- if not line .startswith ('#' ):
11
- ret .append (line )
12
- return ret
13
-
14
-
15
5
setup (
16
6
name = 'docker-make' ,
17
7
description = 'a tool for simplifying docker image building and pushing' ,
18
- version = '1.0' ,
8
+ version = '1.0.1 ' ,
19
9
author = 'jizhilong' ,
20
10
author_email = 'zhilongji@gmail.com' ,
21
11
url = 'https://github.com/CtripCloud/docker-make' ,
22
12
license = 'Apache' ,
23
13
keywords = ['docker' , 'image' ,' build' ],
24
14
scripts = ['docker-make' ],
25
- install_requires = find_requirements (),
15
+ install_requires = [
16
+ 'PyYAML >= 3.10, < 4' ,
17
+ 'docker-py >= 1.8.1, < 2' ,
18
+ ],
26
19
classifiers = [],
27
20
)
You can’t perform that action at this time.
0 commit comments