lemenv


Namelemenv JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryA Citrus-Flavored Virtual Environment Manager
upload_time2024-11-20 18:21:50
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseMIT License Copyright (c) 2024 GenAIJake (contact@genaijake.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords conda environment manager venv virtual environment
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  
# 🍋 LemEnv

<!-- These comments help GitHub generate better social previews -->
<!-- Title -->
<h1 align="center">LemEnv - Virtual Environment Manager</h1>

<!-- Description -->
<p align="center">
  A Citrus-Flavored Virtual Environment Manager that makes managing Python environments a breeze! 🍋✨
</p>

<!-- Badges -->
<p align="center">
  <a href="https://pypi.org/project/lemenv/">
    <img src="https://badge.fury.io/py/lemenv.svg" alt="PyPI version">
  </a>
  <a href="https://github.com/jakerains/lemenv/blob/main/LICENSE">
    <img src="https://img.shields.io/github/license/jakerains/lemenv" alt="License">
  </a>
</p>

</div>

A Citrus-Flavored Virtual Environment Manager - A friendly CLI tool that makes managing Python virtual environments a breeze!

## đŸ“Ļ Installation

It's as simple as:

```bash
pip install lemenv
```

## 🚀 Quick Start

Simply run:

```bash
lemenv
```

<p align="center">
  <img src="screenshot.png" alt="LemEnv Menu" width="600"/>
</p>

That's it! Use the interactive menu to:
- 🔨 Create virtual environments (venv or conda)
- 📋 List your environments
- 🚀 Activate environments with clear instructions
- 🗑ī¸ Delete environments safely
- 🔄 Recreate environments
- đŸ“Ļ Install dependencies from requirements.txt
- ℹī¸ View environment details

### Command Line Interface

```bash
# Create a new virtual environment
lemenv create [name]

# Activate a virtual environment
lemenv activate [name]

# List all virtual environments
lemenv list

# Delete a virtual environment
lemenv delete [name]

# Recreate a virtual environment
lemenv recreate [name]

# Install requirements
lemenv install [name] [requirements_file]

# Show environment info
lemenv info [name]
```

## Examples 📝

1. Create and activate a new environment:
   ```bash
   lemenv create myproject
   lemenv activate myproject
   ```

2. Install requirements:
   ```bash
   lemenv install myproject requirements.txt
   ```

3. Recreate an environment:
   ```bash
   lemenv recreate myproject
   ```

## Contributing 🤝

Contributions are welcome! Please feel free to submit a Pull Request.

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

## License 📄

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Acknowledgments 🙏

- Thanks to all contributors who have helped shape LemEnv
- Built with Python, Click, and Inquirer

## Support đŸ’Ŧ

If you have any questions or run into issues, please open an issue on the GitHub repository.

## 👤 Author

Created by GenAI Jake (@jakerains)

## ⭐ Show your support

Give a ⭐ī¸ if this project helped you! 
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "lemenv",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "conda, environment manager, venv, virtual environment",
    "author": null,
    "author_email": "Jake Rains <your.email@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/f6/53/36176bddbdf62b693ff1224d6c5943ba16e088ab93c804f4c55bf76d3576/lemenv-0.1.2.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  \n# \ud83c\udf4b LemEnv\n\n<!-- These comments help GitHub generate better social previews -->\n<!-- Title -->\n<h1 align=\"center\">LemEnv - Virtual Environment Manager</h1>\n\n<!-- Description -->\n<p align=\"center\">\n  A Citrus-Flavored Virtual Environment Manager that makes managing Python environments a breeze! \ud83c\udf4b\u2728\n</p>\n\n<!-- Badges -->\n<p align=\"center\">\n  <a href=\"https://pypi.org/project/lemenv/\">\n    <img src=\"https://badge.fury.io/py/lemenv.svg\" alt=\"PyPI version\">\n  </a>\n  <a href=\"https://github.com/jakerains/lemenv/blob/main/LICENSE\">\n    <img src=\"https://img.shields.io/github/license/jakerains/lemenv\" alt=\"License\">\n  </a>\n</p>\n\n</div>\n\nA Citrus-Flavored Virtual Environment Manager - A friendly CLI tool that makes managing Python virtual environments a breeze!\n\n## \ud83d\udce6 Installation\n\nIt's as simple as:\n\n```bash\npip install lemenv\n```\n\n## \ud83d\ude80 Quick Start\n\nSimply run:\n\n```bash\nlemenv\n```\n\n<p align=\"center\">\n  <img src=\"screenshot.png\" alt=\"LemEnv Menu\" width=\"600\"/>\n</p>\n\nThat's it! Use the interactive menu to:\n- \ud83d\udd28 Create virtual environments (venv or conda)\n- \ud83d\udccb List your environments\n- \ud83d\ude80 Activate environments with clear instructions\n- \ud83d\uddd1\ufe0f Delete environments safely\n- \ud83d\udd04 Recreate environments\n- \ud83d\udce6 Install dependencies from requirements.txt\n- \u2139\ufe0f View environment details\n\n### Command Line Interface\n\n```bash\n# Create a new virtual environment\nlemenv create [name]\n\n# Activate a virtual environment\nlemenv activate [name]\n\n# List all virtual environments\nlemenv list\n\n# Delete a virtual environment\nlemenv delete [name]\n\n# Recreate a virtual environment\nlemenv recreate [name]\n\n# Install requirements\nlemenv install [name] [requirements_file]\n\n# Show environment info\nlemenv info [name]\n```\n\n## Examples \ud83d\udcdd\n\n1. Create and activate a new environment:\n   ```bash\n   lemenv create myproject\n   lemenv activate myproject\n   ```\n\n2. Install requirements:\n   ```bash\n   lemenv install myproject requirements.txt\n   ```\n\n3. Recreate an environment:\n   ```bash\n   lemenv recreate myproject\n   ```\n\n## Contributing \ud83e\udd1d\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License \ud83d\udcc4\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments \ud83d\ude4f\n\n- Thanks to all contributors who have helped shape LemEnv\n- Built with Python, Click, and Inquirer\n\n## Support \ud83d\udcac\n\nIf you have any questions or run into issues, please open an issue on the GitHub repository.\n\n## \ud83d\udc64 Author\n\nCreated by GenAI Jake (@jakerains)\n\n## \u2b50 Show your support\n\nGive a \u2b50\ufe0f if this project helped you! ",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 GenAIJake (contact@genaijake.com)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A Citrus-Flavored Virtual Environment Manager",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/jakerains/lemenv",
        "Issues": "https://github.com/jakerains/lemenv/issues",
        "Repository": "https://github.com/jakerains/lemenv.git"
    },
    "split_keywords": [
        "conda",
        " environment manager",
        " venv",
        " virtual environment"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8c59905505346bc1365cc43803c141c8585a45a7c46e33dd81962b4134c19f5",
                "md5": "c5d0ffb3be887c46044000b3470e75c3",
                "sha256": "80816b3b72c63d5220b33f4ecb64124278570a24517a3f0a46e51c44b3ebd654"
            },
            "downloads": -1,
            "filename": "lemenv-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c5d0ffb3be887c46044000b3470e75c3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 11723,
            "upload_time": "2024-11-20T18:21:48",
            "upload_time_iso_8601": "2024-11-20T18:21:48.520256Z",
            "url": "https://files.pythonhosted.org/packages/a8/c5/9905505346bc1365cc43803c141c8585a45a7c46e33dd81962b4134c19f5/lemenv-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f65336176bddbdf62b693ff1224d6c5943ba16e088ab93c804f4c55bf76d3576",
                "md5": "bc494e9b8378b27a38ece490009de434",
                "sha256": "7f9256d32138e0d0014f5e79e0fcaf923b62e0114f389527880a338d7c03c2fb"
            },
            "downloads": -1,
            "filename": "lemenv-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "bc494e9b8378b27a38ece490009de434",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 29572,
            "upload_time": "2024-11-20T18:21:50",
            "upload_time_iso_8601": "2024-11-20T18:21:50.049248Z",
            "url": "https://files.pythonhosted.org/packages/f6/53/36176bddbdf62b693ff1224d6c5943ba16e088ab93c804f4c55bf76d3576/lemenv-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-20 18:21:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jakerains",
    "github_project": "lemenv",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "lemenv"
}
        
Elapsed time: 0.94049s