Metadata-Version: 2.1
Name: copy-env
Version: 0.1.2
Summary: A package to copy environment requirements from one venv to another.
Home-page: https://github.com/deschman/reporting
Author: Dan Eschman
Author-email: deschman007@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
Requires-Dist: pytest
Requires-Dist: pytest-virtualenv

# copy_env

## Short Description
A package to copy environment requirements from one venv to another.

## Long Description
**copy_env** is a Python package allowing the user to copy requirements
from one venv to another. Users may interact with this package by importing
the copy_env function or from the command line as a script.

## Examples
### Command Line
C:\example\path\lib\site-packages> python \_\_init\_\_.py --source C:\example\path\python.exe --destination C:\other\example\python.exe
C:\example\path\lib\site-packages> python \_\_init\_\_.py -s C:\example\path\python.exe -d C:\other\example\python.exe

### Importing
    from copy_env import copy_env

    source: str = C:\example\path
    destination: str = C:\other\example

    copy_env(source, destination)


