-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
104 lines (89 loc) · 2.45 KB
/
setup.py
File metadata and controls
104 lines (89 loc) · 2.45 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import os
from setuptools import setup, find_packages
version = '2.1.3.dev0'
tests_require = [
'Plone',
'Products.CMFCore',
'Products.CMFPlone',
'Products.GenericSetup',
'Products.statusmessages',
'collective.z3cform.datagridfield',
'ftw.builder >= 2.0.0.dev0',
'ftw.testing >= 2.0.0.dev0',
'plone.app.content',
'plone.app.contenttypes',
'plone.app.dexterity',
'plone.app.testing',
'plone.dexterity',
'plone.i18n',
'plone.z3cform',
'transaction',
'z3c.form',
'z3c.formwidget.query',
'z3c.relationfield',
'zExceptions',
'zope.configuration',
'zope.globalrequest',
'zope.publisher',
'zope.schema',
]
extras_require = {
'tests': tests_require,
'tests_plone4': [
'plone.formwidget.autocomplete',
'plone.formwidget.contenttree',
],
'plone': ['plone.app.testing'],
'zope2': [
'mechanize',
],
}
setup(name='ftw.testbrowser',
version=version,
description='A test browser for Zope and Plone.',
long_description=open('README.rst').read() + '\n' + \
open(os.path.join('docs', 'HISTORY.txt')).read(),
classifiers=[
'Framework :: Plone',
'Framework :: Plone :: 4.3',
'Framework :: Plone :: 5.1',
'Framework :: Plone :: 5.2',
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='ftw browser testbrowser test',
author='4teamwork AG',
author_email='mailto:info@4teamwork.ch',
url='https://github.com/4teamwork/ftw.testbrowser',
license='GPL2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ftw', ],
include_package_data=True,
zip_safe=False,
install_requires=[
'AccessControl',
'Acquisition',
'cssselect',
'lxml',
'plone.testing',
'plone.uuid',
'requests',
'requests_toolbelt',
'setuptools',
'six >= 1.12.0',
'zope.component',
'zope.deprecation',
'zope.interface',
'Zope2',
],
tests_require=tests_require,
extras_require=extras_require,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)