diff --git a/README.md b/README.md index da5c739..ef99489 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,4 @@ -**isVirtual** is a very simple tool to detect if the current script is within a virtual environment. - -# Disclaimer - -The goal of this project was to play around with the process to publish to [Pypi](https://pypi.org). The code of this module is coming from this [stackoverflow thread](https://stackoverflow.com/questions/1871549/how-to-determine-if-python-is-running-inside-a-virtualenv). - -If you find use cases in which it doesn't work please open an [issue](https://github.com/AlexMili/isVirtual/issues). I intend to maintain this small package even if it can be seen as *"useless"*. +**isVirtual** is a tool to detect if the current directory is linked to a virtual environment, get the config of this env and more. Work with venv, virtualenv, pipenv, poetry and soon hatch and pdm. # Install diff --git a/pyproject.toml b/pyproject.toml index 8365b1a..43108a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "isvirtual" -description = "Detect if your script is running inside a virtual environment" +description = "Tool to detect if the current directory is linked to a virtual environment, get the config of this env and more. Work with venv, virtualenv, pipenv, poetry and soon hatch and pdm." dynamic = ["version"] readme = "README.md" authors = [{ name = "Alex Mili" }]