-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
45 lines (43 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import find_packages, setup
with open('README.rst') as f:
README = f.read()
setup(
name='airgun',
version='0.0.1', # Should be identical to the version in docs/conf.py!
description=(
'A library which is build over Widgetastic and navmazing to make '
'Satellite 6 UI testing easier.'
),
long_description=README,
author='RedHat QE Team',
url='https://github.com/SatelliteQE/airgun',
install_requires=[
'cached_property',
'fauxfactory',
'navmazing',
'python-box',
'pytest',
'wait_for',
'webdriver-kaifuku',
'selenium==4.21.0',
'widgetastic.core',
'widgetastic.patternfly',
'widgetastic.patternfly4',
],
packages=find_packages(exclude=['tests*']),
package_data={'': ['LICENSE']},
include_package_data=True,
license='GNU GPL v3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: LinuxProgramming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)