Generate requirements[-dev].txt from Pipfile using pipenv
Project description
Generate requirements[-dev].txt from Pipfile (using pipenv)
Free software: MIT
Documentation: https://pipenv-to-requirements.readthedocs.org/en/latest/
Rational
Pipfile and its sibling Pipfile.lock are clearly superior tools defining clear dependencies or a package. Pipfile is to be maintained by the package’s developer while Pipfile.lock represent a clear image of what is currently installed on the current system, guarantying full reproductibility of the setup. See more information about Pipfile format here. Most of the time, Pipfile.lock should be ignored (ie, not tracked in your git) for packages published on Pypi.
pipenv is a great tool to maintain Pipfile, but developers might be stuck with backward compatibility issues for tools and services that still use requirements.txt and does not know how to handle Pipfile or Pipfile.lock yet.
For examples:
pip install (if you install a package with pip that does not have a requirements.txt, its dependencies won’t be installed, even if you use Pipfile)
Usage
Just before building source/binary/wheel package of your python module, execute:
To generate requirements files (ie, dependencies are described eventually by range):
pipenv run pipenv_to_requirements
To generate frozen requirements (ie, all dependencies have their version frozen):
pipenv run pipenv_to_requirements -f
It will generate requirements.txt and, if applicable, requirements-dev.txt, in the current directory.
Contributing
Create your development environment with
$ make dev
Execute unit tests:
$ make test
Build source, binary and wheels packages:
$ make dist
Code Style Checks:
$ make check
Code formatter:
$ make style
Create a release:
make requirements git tag 1.2.3 make push
On successful Travis build on a Tag, your Pypi package will be updated automatically.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pipenv-to-requirements-0.1.5.tar.gz
.
File metadata
- Download URL: pipenv-to-requirements-0.1.5.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4da5374a8363b5adfaaa8aea893a1059ac0128da451738f5b75ab5e12f82bd2e |
|
MD5 | 8b009661b22a90fe901475ac5d0608f2 |
|
BLAKE2b-256 | 34ad4424cc36e30717a69627eda3668ead8834fc3ed398d27bc62ccd073f53af |
File details
Details for the file pipenv_to_requirements-0.1.5-py2.py3-none-any.whl
.
File metadata
- Download URL: pipenv_to_requirements-0.1.5-py2.py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 996cefe851de85493461f3a85040517f33821ad64be6d045c5b932841a149589 |
|
MD5 | f348221eab5c7af500852d1214ee7282 |
|
BLAKE2b-256 | f2fc14f07f7ab77b2eb46e72c2e132c41e38e9a441db7aa95a1f6e666305ffb8 |