-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (28 loc) · 944 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
"planterbox>=0.6.3",
"selenium>=4.0.0",
"six",
]
description = 'Steps for web testing using selenium and planterbox'
setup(name='planterbox-webdriver',
version='0.5.0',
description=description,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
'Topic :: Software Development :: Testing',
],
author='Nick Pilon',
author_email='[email protected]',
url='https://github.com/npilon/planterbox-webdriver',
keywords='testing test bdd lettuce cucumber gherkin nosetests nose2 webdriver selenium',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
test_suite='planterbox_webdriver',
install_requires=requires,
)