-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
28 lines (27 loc) · 1.11 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
from distutils.core import setup
setup(
name='basepage',
packages=['basepage'],
version='1.7.4',
description='A wrapper for WebDriver that provides some extended and additional functionality',
author='Bijwen Aziz',
author_email='baziz@planview.com',
url='https://github.com/Projectplace/basepage',
download_url='https://github.com/Projectplace/basepage/tarball/1.7.4',
keywords=['testing', 'webdriver', 'selenium'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6']
)