File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ # bonobo-selenium (see github.com/python-bonobo/bonobo-selenium)
2+
3+ name = 'bonobo_selenium'
4+ description = 'Bonobo Selenium Extension'
5+ license = 'Apache License, Version 2.0'
6+
7+ url = 'https://bonobo-project.org/'
8+ download_url = 'https://github.com/python-bonobo/bonobo-selenium/tarball/{version}'
9+
10+ author = 'Romain Dorgueil'
11+ author_email = 'romain@dorgueil.net'
12+
13+ enable_features = {
14+ 'make',
15+ 'sphinx',
16+ 'pytest',
17+ 'git',
18+ 'pylint',
19+ 'python',
20+ }
21+
22+ install_requires = [
23+ 'bonobo',
24+ 'selenium >=3.0.2,<3.1',
25+ ]
26+
27+ extras_require = {
28+ 'dev': [
29+ 'coverage >=4.2,<4.3',
30+ 'mock >=2.0,<2.1',
31+ 'nose >=1.3,<1.4',
32+ 'pylint >=1.6,<1.7',
33+ 'pytest >=3,<4',
34+ 'pytest-cov >=2.4,<2.5',
35+ 'sphinx',
36+ 'sphinx_rtd_theme',
37+ 'yapf',
38+ ],
39+ }
40+
41+ @listen('edgy.project.feature.make.on_generate', priority=10)
42+ def on_make_generate_docker_targets(event):
43+ event.makefile['SPHINX_SOURCEDIR'] = 'docs'
You can’t perform that action at this time.
0 commit comments