-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 952 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 952 Bytes
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 setuptools import setup, find_packages, Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys
import subprocess
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
setup(name='friendly-pageobjects',
version='1.0.3',
description='Basement for selenium tests based on the pageobject-pattern',
long_description='',
author='ButFriendly',
author_email='hello@butfriendly.com',
license='3-Clause BSD',
url='https://github.com/butfriendly/friendly-pageobjects',
include_package_data=True,
classifiers=[],
namespace_packages=['friendly'],
packages=find_packages(exclude=['tests']),
install_requires=['selenium==2.37.0',
'pyyaml>=3.10'],
cmdclass={'test': PyTest},)