-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
36 lines (32 loc) · 1.17 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
__version__ = '0.3.5'
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(name='lettuce_webdriver',
version=__version__,
description='Selenium webdriver extension for lettuce',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
'Topic :: Software Development :: Testing',
],
keywords='web lettuce bdd',
author="Nick Pilon, Ben Bangert",
author_email="[email protected], [email protected]",
url="https://github.com/bbangert/lettuce_webdriver/",
license="MIT",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require = ['lettuce', 'selenium', 'nose'],
install_requires=['lettuce','selenium>=2.30.0'],
test_suite="lettuce_webdriver",
entry_points="""
[console_scripts]
lettuce_webdriver=lettuce_webdriver.parallel_bin:main
"""
)