├── .bumpversion.cfg ├── .github └── workflows │ └── unit-tests.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── poetry.lock ├── poetry2conda ├── __init__.py └── convert.py ├── pyproject.toml └── tests └── test_example.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/README.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry2conda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/poetry2conda/__init__.py -------------------------------------------------------------------------------- /poetry2conda/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/poetry2conda/convert.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojeda/poetry2conda/HEAD/tests/test_example.py --------------------------------------------------------------------------------