forked from Element-34/py.saunter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (47 loc) · 1.78 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
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
setup(
name="py.saunter",
packages=['saunter',
'saunter.generators',
'saunter.po',
'saunter.po.remotecontrol',
'saunter.po.webdriver',
'saunter.providers',
'saunter.testcase'],
package_data={"saunter": ["_defaults/conftest.py",
"_defaults/pytest.ini",
"_defaults/conf/saunter.ini.default",
"_defaults/tailored/remotecontrol.py",
"_defaults/tailored/page.py",
"_defaults/tailored/webdriver.py"]},
version = "0.62",
author = "adam goucher",
author_email = "[email protected]",
install_requires = ['pytest>=2.3.5',
'pytest-marks>=0.3',
'pytest-xdist',
'requests',
'selenium>=2.32.0',
'browsermob-proxy>=0.4.0',
'harpy>=0.2.0'],
license="LICENSE.txt",
description="An opinionated Selenium framework",
long_description="An opinionated test framework",
url='https://github.com/Element-34/py.saunter',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python'
],
entry_points = {
"console_scripts": [
"pysaunter = saunter.main",
],
}
)