-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (59 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: (c) 2024 by Jussi Vatjus-Anttila
:license: MIT, see LICENSE for more details.
"""
from setuptools import setup
setup(
name="pytest-stf",
use_scm_version=True,
description="pytest plugin for openSTF",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="Jussi Vatjus-Anttila",
author_email="jussiva@gmail.com",
url="https://github.com/opentmi/pytest-stf",
packages=["pytest_stf"],
entry_points={"pytest11": ["stf = pytest_stf.plugin"]},
setup_requires=["setuptools_scm"],
install_requires=[
"pytest>=5.0",
"pytest-metadata",
"stf-appium-client~=0.12.0",
"pytest-lockable~=0.10.0"],
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# syntax, for example:
#
# $ pip install .[dev]
#
# Similar to `install_requires` above, these must be valid existing
# projects.
extras_require={ # Optional
'dev': ['pytest-cov', 'mock', 'flake8', 'pylint', 'pyinstaller']
},
license="Mozilla Public License 2.0 (MPL 2.0)",
keywords="py.test pytest openstf android phone",
python_requires=">=3.8",
classifiers=[
# "Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
)