-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 857 Bytes
/
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
#!/usr/bin/env python
"""PageAdapter pattern for Python Selenium browser test abstraction."""
from setuptools import setup, find_packages
setup(
name='selenium_page_adapter',
version='0.2.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',
author_email='[email protected]',
url='https://selenium_page_adapter.readthedocs.org/en/latest/',
license='MIT',
packages=find_packages(),
test_suite='selenium_page_adapter.tests',
install_requires=[
'selenium',
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
],
)