Skip to content

Commit

Permalink
Merge 3b6881f into master
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 14, 2022
2 parents c9a3287 + 3b6881f commit 6aa3436
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A script that allows you to concisely:
* run shell commands in the directory
* check the run results

For example, during unit testing of a library, we can create a temporary project that imports our library. And check that it was imported.
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.


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

$ pip install git+https://github.com/rtmigo/tempground_py
$ pip install tempground
$ python lib_test.py
```
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

from pathlib import Path

from setuptools import setup, find_packages
Expand All @@ -7,7 +6,7 @@

setup(
name=name,
version="0.4.0",
version="0.4.1",

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

long_description=(Path(__file__).parent / 'README.md')
long_description=(Path(__file__).parent / 'README.md') \
.read_text(encoding="utf-8"),
long_description_content_type='text/markdown',

license="MIT",

keywords="temo library testing integration".split(),
keywords="temp library unit testing integration".split(),

classifiers=[
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 6aa3436

Please sign in to comment.