Skip to content

Commit 696cf1b

Browse files
authored
Merge pull request #4 from CyberAlpaca/flatten-project-hierarchy
Flatten project hierarchy and move squape-report modules into the squape module
2 parents 7043378 + 8a92c4a commit 696cf1b

File tree

7 files changed

+19
-51
lines changed

7 files changed

+19
-51
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1-
# :llama: SQUAPE - Squish API Python Extension
1+
![Squish - version](https://img.shields.io/badge/Squish-v6.7.0+-brightgreen)
2+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/squape)
3+
![PyPI - License](https://img.shields.io/pypi/l/squape)
4+
# SQUAPE - Squish API Python Extension
25
Python package that extends Squish Python API. It provides tools for everyday automated test cases development.
36

47
### Requirements
58
To enjoy all the features of the SQUAPE package, you have to use it with Squish version 6.7.0 or newer.
69

710
### Installation
8-
The packages are available on the Python Package Index (PyPI).
9-
- The `squape-report` package includes methods that enrich Squish reporting and verifying capabilities
10-
11-
You can install them via `pip` with the following commands:
11+
The package is available on the Python Package Index (PyPI).
12+
You can install it via `pip` with the following commands:
1213
```sh
13-
pip install squape-report
14+
pip install squape
1415
```
1516

17+
### Content
18+
The package consists of several modules:
19+
- report - adds features to enhance the reporting and verification capabilities of Squish.
20+
1621
## Contribution
1722
The package is created and maintained by [Cyber Alpaca](https://cyberalpaca.com/)
1823
Pull requests for any issues are welcome.

squape-report/pyproject.toml renamed to pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ build-backend = "setuptools.build_meta"
77
[tool.setuptools.packages.find]
88
where = ["."]
99
include = ["squape"]
10-
namespaces = true
10+
namespaces = false
1111

1212
[project]
13-
name = "squape-report"
13+
name = "squape"
1414
version = "0.1.0"
1515
authors = [
1616
{ name="Cyber Alpaca", email="[email protected]" },

squape-report/LICENSE

Lines changed: 0 additions & 27 deletions
This file was deleted.

squape-report/README.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

squape/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2023, Cyber Alpaca
4+
# All rights reserved.
5+
# This source code is licensed under the BSD-style license found in the
6+
# LICENSE file in the root directory of this source tree.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)