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.

17 lines
450 B

  1. """Support for packaging, distribution and installation of Python projects.
  2. Third-party tools can use parts of packaging as building blocks
  3. without causing the other modules to be imported:
  4. import packaging.version
  5. import packaging.metadata
  6. import packaging.pypi.simple
  7. import packaging.tests.pypi_server
  8. """
  9. from logging import getLogger
  10. __all__ = ['__version__', 'logger']
  11. __version__ = "1.0a3"
  12. logger = getLogger('packaging')