Metadata-Version: 2.1
Name: poetry2setup
Version: 1.1.0
Summary: Convert python-poetry to setup.py
License: MIT
Author: abersheeran
Author-email: me@abersheeran.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: poetry-core (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

Convert python-poetry(pyproject.toml) to setup.py.

It only relies on poetry.core, so the effect is better than any other third-party software.

I created this library because python-poetry does not support exporting to setup.py and dephell will generate setup.py incorrectly in some cases.

## Install

```bash
pip install poetry2setup
```

## Usage

Run command `poetry2setup` in your project directory, it will display `setup.py` content in console. If you want to export to `setup.py`, just run `poetry2setup > setup.py`.

