-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
38 lines (35 loc) · 1.24 KB
/
setup.py
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
31
32
33
34
35
36
37
38
from setuptools import setup
from io import open
with open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name='behave-webdriver',
version='0.3.1',
url='https://github.com/spyoungtech/behave-webdriver/',
license='MIT',
author='Spencer Young',
author_email='[email protected]',
description='Selenium webdriver step library for behave BDD testing',
long_description=readme,
packages=['behave_webdriver', 'behave_webdriver.steps'],
platforms='any',
install_requires=[
'selenium < 4',
'behave'
],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Software Development :: Testing :: BDD',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)