login page
This commit is contained in:
22
Lib/site-packages/pipenv/vendor/passa/cli/remove.py
vendored
Normal file
22
Lib/site-packages/pipenv/vendor/passa/cli/remove.py
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- coding=utf-8 -*-
|
||||
|
||||
from __future__ import absolute_import, print_function, unicode_literals
|
||||
|
||||
from ..actions.remove import remove
|
||||
from ._base import BaseCommand
|
||||
from .options import dev_group, no_clean, packages
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
|
||||
name = "remove"
|
||||
description = "Remove packages from project."
|
||||
arguments = [dev_group, no_clean, packages]
|
||||
|
||||
def run(self, options):
|
||||
return remove(project=options.project, only=options.only,
|
||||
packages=options.packages, clean=options.clean)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
Command.run_parser()
|
||||
Reference in New Issue
Block a user