diff --git a/README.md b/README.md index c41e516..2003dd2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Simple JMeter performance tests API for python #### Powered by [JMeter-DSL](https://abstracta.github.io/jmeter-java-dsl/) and [pyjnius](https://github.com/kivy/pyjnius) -[![Version](https://img.shields.io/pypi/v/py-meter.svg)](https://pypi.python.org/pypi/py-meter) +[![Version](https://img.shields.io/pypi/v/py-jmeter-dsl.svg)](https://pypi.python.org/pypi/py-jmeter-dsl) ![](https://raw.githubusercontent.com/eldaduzman/pymeter/main/docs/badges/coverage-badge.svg) ![](https://raw.githubusercontent.com/eldaduzman/pymeter/main/docs/badges/pylint.svg) ![](https://raw.githubusercontent.com/eldaduzman/pymeter/main/docs/badges/mutscore.svg) @@ -55,7 +55,7 @@ Using [pyjnius](https://github.com/kivy/pyjnius) developed by Kivy, it is possib ### Install pymeter ``` ->>> pip install py-meter +>>> pip install py-jmeter-dsl ``` ### simple pymeter script: diff --git a/docs/user-guide/source/conf.py b/docs/user-guide/source/conf.py index e55929b..36a513b 100644 --- a/docs/user-guide/source/conf.py +++ b/docs/user-guide/source/conf.py @@ -7,7 +7,7 @@ project = "pymeter" copyright = "2010 Eldad Uzman" author = "Eldad Uzman" -release, version = get_version("py-meter") +release, version = get_version("py-jmeter-dsl") # General -------------------------------------------------------------- @@ -33,7 +33,7 @@ html_theme_options = {"index_sidebar_logo": False} html_context = { "project_links": [ - ProjectLink("PyPI Releases", "https://pypi.org/project/py-meter/"), + ProjectLink("PyPI Releases", "https://pypi.org/project/py-jmeter-dsl/"), ProjectLink("Source Code", "https://github.com/eldaduzman/pymeter"), ProjectLink("Issue Tracker", "https://github.com/eldaduzman/pymeter/issues/"), @@ -56,7 +56,7 @@ # LaTeX ---------------------------------------------------------------- -latex_documents = [(master_doc, f"py-meter-{version}.tex", html_title, author, "manual")] +latex_documents = [(master_doc, f"py-jmeter-dsl-{version}.tex", html_title, author, "manual")] # Local Extensions ----------------------------------------------------- diff --git a/docs/user-guide/source/installation.rst b/docs/user-guide/source/installation.rst index 261a595..353aa2d 100644 --- a/docs/user-guide/source/installation.rst +++ b/docs/user-guide/source/installation.rst @@ -56,7 +56,7 @@ Install from pip .. code-block:: text - > pip install py-meter + > pip install py-jmeter-dsl Now you can open a python shell diff --git a/pyproject.toml b/pyproject.toml index cca79de..9b94b8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "py-meter" +name = "py-jmeter-dsl" version = "0.1-alpha.1" description = "Simple JMeter performance tests API for python" authors = ["Eldad Uzman "]