requirements txt dev python

Solutions on MaxInterview for requirements txt dev python by the best coders in the world

showing results for - "requirements txt dev python"
Giovanni
19 Jan 2018
1requirements = [
2    'click',
3    'ansible',
4    'fabric',
5    'gitpython',
6    'pyyaml',
7    'jinja2',
8    'yapsy'
9]
10
11setup({
12    install_requires=requirements,
13    extras_require={
14        'dev': [
15            'pytest',
16            'pytest-pep8',
17            'pytest-cov'
18        ]
19    }
20})
21