forked from cobrateam/splinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.24 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
# -*- coding: utf-8 -*-
# Copyright 2012 splinter authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
from setuptools import setup, find_packages
import codecs
README = codecs.open('README.rst', encoding='utf-8').read()
setup(
name='splinter',
version='0.7.5+headless',
url='https://github.com/cobrateam/splinter',
description='browser abstraction for web acceptance testing',
long_description=README,
author='CobraTeam',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
] + [('Programming Language :: Python :: %s' % x) for x in '2.6 2.7 3.3 3.4'.split()],
packages=find_packages(exclude=['docs', 'tests', 'samples']),
include_package_data=True,
install_requires=['selenium>=3.4.3'],
extras_require={'zope.testbrowser': ['zope.testbrowser>=4.0.4',
'lxml>=2.3.6', 'cssselect'],
'django': ['Django>=1.7.11,<1.12', 'lxml>=2.3.6', 'cssselect', 'six'],
'flask': ['Flask>=0.12.2', 'lxml>=2.3.6', 'cssselect']},
tests_require=['coverage', 'flask'],
)