requirementstxt
requirements.txt support for Python
Details
Installs
- Total 66K
- Win 30K
- Mac 18K
- Linux 19K
Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 2 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 5 | 0 | 0 | 2 | 0 | 3 | 1 | 0 | 2 | 2 | 0 | 0 | 1 | 0 | 1 | 3 | 0 | 0 | 2 | 0 | 0 | 1 | 5 | 2 | 2 |
Mac | 1 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 2 | 0 | 1 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 2 | 0 | 4 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 3 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 2 | 2 | 0 | 1 | 1 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 2 |
Readme
- Source
- raw.githubusercontent.com
requirements.txt
Plugin for Sublime Text 2/3 providing autocompletion, syntax highlight and easy version management in requirements.txt files.
Installation
Install using Package Control or clone this repository into Packages/requirementstxt
folder (WARNING: previously we used a dot in the package name here, but SublimeText3 changed the way it imports packages, and we need to fall back to ascii name)
Usage
- Open any requirements.txt file or Set syntax: requirements.txt of newly created file.
- Start typing package name -> autocompletion should trigger automatically.
- When cursor is placed on a single line, press
Alt+,
to pin package to the most recent version but still in the current major line. For example, if the current version of xyz is 1.2.3, requirements.txt will generate following version line: xyz>=1.2.3,<2.0.0 following http://semver.org/. - If you wish to hard pin most recent versions, use
Alt+Shift+,
-> line will be replaced with xyz==1.2.3 - If you wish to pin a specific version, press
Alt+.
(soft) orAlt+Shift+.
(hard) and pick a version from a quick panel. - Commands with
,
support mutliline and multicursor selections. If you wish to bring requirements.txt file up to date, justCtrl+A
&Alt+Shift+
. - Using requirements.txt also normalizes package names, so mysql-python becomes MySQL-python.
Screenshots
Autocomplete
Completed
Select exact version for soft pin
Alt+.
Select exact version for hard pin
Alt+Shift+.
Automatically soft pin most recent version
Alt+,
Automatically hard pin most recent version
Alt+Shift+,
Multi-line selection
Multi-line selection &
Alt+,
Multiple cursors
Multiple cursor &
Alt+Shift+,