Skip to content

Commit bb1d445

Browse files
authored
Release 0 9 5 (#25)
* release v0.9.5 * release v0.9.5
1 parent 4ff36c1 commit bb1d445

4 files changed

Lines changed: 9 additions & 198 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
echo $PWD
3332
pip install build
3433
- name: Build package
3534
run: python -m build

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ include testipy/reporter/reporters/templates/*.css
33
include testipy/reporter/reporters/templates/*.html
44
include testipy/reporter/reporters/reporter_portalio.yaml
55
include testipy/engine/execution_logger_config.yaml
6+
include testipy/requirements.txt
7+
include README.md

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
from testipy import __app__, __version__, __author__, __author_email__
44

55

6-
app_path = os.path.dirname(os.path.abspath(__file__))
7-
os.chdir(app_path)
8-
print(f"installing from {app_path}")
6+
curr_path = os.path.dirname(os.path.abspath(__file__))
97

108

11-
with open("README.md", "r") as fh:
9+
readme = os.path.join(curr_path, "README.md")
10+
print(f"Reading {readme}")
11+
with open(readme, "r") as fh:
1212
long_description = fh.read()
1313

14-
15-
with open("testipy/requirements.txt", "r") as fr:
14+
requirements = os.path.join(curr_path, "testipy", "requirements.txt")
15+
print(f"Installing {requirements}")
16+
with open(requirements, "r") as fr:
1617
install_requires = str(fr.read()).split("\n")
17-
print("requires -", install_requires)
1818

1919

2020
setuptools.setup(

testipy/readme.md

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

0 commit comments

Comments
 (0)