You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
276 B

  1. from __future__ import absolute_import
  2. from .req_install import InstallRequirement
  3. from .req_set import RequirementSet, Requirements
  4. from .req_file import parse_requirements
  5. __all__ = [
  6. "RequirementSet", "Requirements", "InstallRequirement",
  7. "parse_requirements",
  8. ]