Skip to content

Commit 6aa3436

Browse files
Merge 3b6881f into master
2 parents c9a3287 + 3b6881f commit 6aa3436

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,5 +134,4 @@ jobs:
134134
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
135135
run: |
136136
python setup.py sdist bdist_wheel
137-
twine upload dist/*
138-
137+
twine upload dist/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A script that allows you to concisely:
1111
* run shell commands in the directory
1212
* check the run results
1313

14-
For example, during unit testing of a library, we can create a temporary project that imports our library. And check that it was imported.
14+
For example, during integration testing of a library, we can create a small temporary project that imports our library. And we check that the library was imported.
1515

1616

1717
## Example: Testing a Kotlin library
@@ -72,6 +72,6 @@ To run the test on a clean system, install `tempground` and run the script:
7272
# assuming pip and python are Python 3.10+
7373
# and lib_test.py is a local file
7474

75-
$ pip install git+https://github.com/rtmigo/tempground_py
75+
$ pip install tempground
7676
$ python lib_test.py
7777
```

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
from pathlib import Path
32

43
from setuptools import setup, find_packages
@@ -7,7 +6,7 @@
76

87
setup(
98
name=name,
10-
version="0.4.0",
9+
version="0.4.1",
1110

1211
author="Artsiom iG",
1312
author_email="ortemeo@gmail.com",
@@ -18,13 +17,13 @@
1817
python_requires='>=3.10', # 3.10 for `match`
1918
install_requires=[],
2019

21-
long_description=(Path(__file__).parent / 'README.md')
20+
long_description=(Path(__file__).parent / 'README.md') \
2221
.read_text(encoding="utf-8"),
2322
long_description_content_type='text/markdown',
2423

2524
license="MIT",
2625

27-
keywords="temo library testing integration".split(),
26+
keywords="temp library unit testing integration".split(),
2827

2928
classifiers=[
3029
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)