Metadata-Version: 2.1
Name: setuptools-pipfile
Version: 0.6.0
Summary: Dependency management via Pipfile
Home-page: https://github.com/asyncon/setuptools-pipfile
Author: asyncon
Author-email: 53700266+asyncon@users.noreply.github.com
License: MIT
Project-URL: Bug Tracker, https://github.com/asyncon/setuptools-pipfile/issues
Project-URL: Documentation, https://setuptools-pipfile.readthedocs.io
Project-URL: Source Code, https://github.com/asyncon/setuptools-pipfile
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Framework :: Setuptools Plugin
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
Provides-Extra: docs
License-File: LICENSE

# setuptools-pipfile

Dependency management via Pipfile

[![CI](https://github.com/asyncon/setuptools-pipfile/actions/workflows/ci.yml/badge.svg)](https://github.com/asyncon/setuptools-pipfile/actions/workflows/ci.yml)
[![Docs](https://readthedocs.org/projects/setuptools-pipfile/badge/?version=latest)](https://setuptools-pipfile.readthedocs.io/en/latest/?badge=latest)
[![MIT](https://img.shields.io/pypi/l/setuptools-pipfile.svg)](https://github.com/asyncon/setuptools-pipfile/blob/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/setuptools-pipfile.svg)](https://pypi.org/project/setuptools-pipfile/)
[![Python](https://img.shields.io/pypi/pyversions/setuptools-pipfile.svg)](https://pypi.org/project/setuptools-pipfile/)
[![Downloads](https://pepy.tech/badge/setuptools-pipfile)](https://pepy.tech/project/setuptools-pipfile)

## Overview

In basic mode setuptools-pipfile does the following:

- Populates `install_requires` from the packages table.
- Populates `tests_require` from the dev-packages table.
- Populates `dependency_links` from the source tables if needed by dependencies.

Advanced configuration can be used to control:

- The path to the Pipfile.
- Variable interpolation.
- Removing indexes from `dependency_links`.
- Activate and control populating `extras_require`.
- Control populating `python_requires`.

All documentation is located [here](https://setuptools-pipfile.readthedocs.io).


