-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 736 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 736 Bytes
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
from setuptools import find_packages, setup
setup(
name='pb_testing',
packages=find_packages(include=['pb_testing']),
version='0.2.2',
scripts=['bin/prepare',
'bin/extra_modules_for_pb_testing.py',
'bin/pb_configuration',
'bin/step_creator'],
description='Library for bdd testing',
author='Me',
license='MIT',
install_requires=[
'bs4 >= 0.0.1',
'behave >= 1.2.5',
'PySimpleGUI >= 4.60.4',
'pyperclip >= 1.8.2',
'mechanize >= 0.4.8',
'selenium >= 4.6.0',
'lxml >= 4.9.1'
],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1'],
test_suite='tests',
include_package_data=True
)