-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
86 lines (83 loc) · 2.66 KB
/
Copy pathsetup.py
File metadata and controls
86 lines (83 loc) · 2.66 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from setuptools import find_packages
from setuptools import setup
install_requires = [
'gocept.httpserverlayer >= 3',
'httpagentparser',
'importlib-resources',
'plone.testing >= 7.0',
'selenium >= 4',
'Pillow',
'setuptools',
'webdriver-manager',
]
setup(
name='gocept.selenium',
version='7.2.dev0',
author='gocept and contributors',
author_email='mail@gocept.com',
url='https://goceptselenium.readthedocs.org/',
description=('Test-friendly Python API for Selenium and integration with '
'web application frameworks.'),
keywords='selenium zope grok plone pyramid pylons testing',
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: BFG',
'Framework :: Plone',
'Framework :: Plone :: 5.2',
'Framework :: Plone :: 5.3',
'Framework :: Plone :: 6.0',
'Framework :: Pylons',
'Framework :: Pyramid',
'Framework :: Zope :: 3',
'Framework :: Zope :: 4',
'Framework :: Zope :: 5',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: Zope Public License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Software Development :: Testing',
],
long_description=(
open('README.rst').read() +
'\n\n' +
open('HACKING.rst').read() +
'\n\n' +
open('CHANGES.rst').read()),
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='ZPL 2.1',
namespace_packages=['gocept'],
python_requires='>=3.7, <4',
install_requires=install_requires,
extras_require=dict(
grok=[
'gocept.httpserverlayer[zopeappwsgi]',
'zope.app.appsetup',
],
plonetesting=[
'gocept.httpserverlayer[plonetestingzope]',
],
screenshot=[
'Pillow'
],
),
entry_points={
'console_scripts': [
'converthtmltests = gocept.selenium.scripts.converthtmltests:main',
],
},
)