-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
36 lines (34 loc) · 1.13 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
from setuptools import setup
version = '1.2.1'
setup(
name='webium',
version=version,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=[
'webium',
],
include_package_data=True,
author='Wargaming.NET',
author_email='[email protected]',
url='https://github.com/wgnet/webium',
description='Webium is a Page Object pattern implementation library for Python '
'(http://martinfowler.com/bliki/PageObject.html). '
'It allows you to extend WebElement class to your custom controls '
'like Link, Button and group them as pages.',
install_requires=[
'future>=0.14',
'selenium',
'waiting>=1.2.1',
],
entry_points={
'nose.plugins': ['browser_closer = webium.plugins.browser_closer:BrowserCloserPlugin'],
},
)