-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProjectfile
More file actions
30 lines (24 loc) · 843 Bytes
/
Projectfile
File metadata and controls
30 lines (24 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
################################################################################
# This file is the project manifest for bonobo-selenium.
# It is used to maintain a lot of files, like setup.py, etc.
#
from medikit import require
pytest = require('pytest')
python = require('python')
yapf = require('yapf')
python.setup(
name='bonobo_selenium',
description='Bonobo Selenium Extension',
license='Apache License, Version 2.0',
url='https://bonobo-project.org/with/selenium',
download_url='https://github.com/python-bonobo/bonobo-selenium/tarball/{version}',
author='Romain Dorgueil',
author_email='romain@dorgueil.net', )
bonobo_version = '>= 0.5.1'
python.add_requirements(
'bonobo ' + bonobo_version,
'selenium >=3.7,<3.8',
dev=[
'bonobo[dev] ' + bonobo_version,
], )
# vim: ft=python: