File tree 4 files changed +16
-14
lines changed
4 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 8
8
# command to install dependencies
9
9
install :
10
10
- pip install .
11
+ - pip install -r dev-requirements.txt
11
12
- pip install -r requirements.txt
12
13
- pip install bandit
13
14
Original file line number Diff line number Diff line change
1
+ requests==2.20.0
2
+ pytest>=2.7.0
3
+ responses>=0.8.1
4
+ setuptools>=38.2.4
5
+ setuptools-scm>=1.15.6
6
+ pylint
7
+ pytest-cov
8
+ codecov
9
+ flake8
10
+ sphinx
Original file line number Diff line number Diff line change 1
- enum34 >= 1.0.4
2
- funcsigs >= 1.0.2
3
1
lxml >= 3.7.3
4
- pytest >= 2.7.0
5
- requests == 2.20.0
6
- responses >= 0.8.1
7
- setuptools >= 38.2.4
8
- setuptools-scm >= 1.15.6
9
- pylint
10
- pytest-cov
11
- codecov
12
- flake8
13
- sphinx
Original file line number Diff line number Diff line change @@ -37,18 +37,21 @@ def _read(name):
37
37
packages = find_packages (exclude = ("tests" )),
38
38
zip_safe = False ,
39
39
install_requires = [
40
- "enum34>=1.0.4" ,
41
40
"lxml>=3.7.3" ,
42
41
],
43
42
extras_require = {
44
43
},
45
44
tests_require = [
45
+ "codecov" ,
46
+ "flake8" ,
46
47
"setuptools>=38.2.4" ,
47
48
"setuptools-scm>=1.15.6" ,
48
- "funcsigs>=1.0.2" ,
49
49
"requests==2.20.0" ,
50
50
"responses>=0.8.1" ,
51
+ "pylint" ,
51
52
"pytest>=2.7.0" ,
53
+ "pytest-cov" ,
54
+ "sphinx" ,
52
55
],
53
56
classifiers = [ # cf. http://pypi.python.org/pypi?%3Aaction=list_classifiers
54
57
'Development Status :: 5 - Production/Stable' ,
You can’t perform that action at this time.
0 commit comments