-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
33 lines (31 loc) · 1.26 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
from io import open
from setuptools import setup
exec(open('PageObjectLibrary/version.py').read())
setup(
name = 'robotframework-pageobjectlibrary',
version = __version__,
author = 'Bryan Oakley',
author_email = '[email protected]',
url = 'https://github.com/boakley/robotframework-pageobjectlibrary/',
keywords = 'robotframework',
license = 'Apache License 2.0',
description = 'RobotFramework library that implements the Page Object pattern',
long_description = open('README.md', encoding='latin-1').read(),
zip_safe = True,
include_package_data=True,
install_requires = ['robotframework', 'robotframework-seleniumlibrary', 'selenium', 'six'],
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Robot Framework",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
],
packages = [
'PageObjectLibrary',
],
scripts = [],
)