METADATA 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.1
  2. Name: pbr
  3. Version: 4.0.2
  4. Summary: Python Build Reasonableness
  5. Home-page: https://docs.openstack.org/pbr/latest/
  6. Author: OpenStack
  7. Author-email: openstack-dev@lists.openstack.org
  8. License: UNKNOWN
  9. Project-URL: Bug Tracker, https://bugs.launchpad.net/pbr/
  10. Project-URL: Documentation, https://docs.openstack.org/pbr/
  11. Project-URL: Source Code, https://git.openstack.org/cgit/openstack-dev/pbr/
  12. Platform: UNKNOWN
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Environment :: Console
  15. Classifier: Environment :: OpenStack
  16. Classifier: Intended Audience :: Developers
  17. Classifier: Intended Audience :: Information Technology
  18. Classifier: License :: OSI Approved :: Apache Software License
  19. Classifier: Operating System :: OS Independent
  20. Classifier: Programming Language :: Python
  21. Classifier: Programming Language :: Python :: 2
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3.3
  25. Classifier: Programming Language :: Python :: 3.4
  26. Classifier: Programming Language :: Python :: 3.5
  27. Description-Content-Type: text/x-rst; charset=UTF-8
  28. Introduction
  29. ============
  30. .. image:: https://img.shields.io/pypi/v/pbr.svg
  31. :target: https://pypi.python.org/pypi/pbr/
  32. :alt: Latest Version
  33. .. image:: https://img.shields.io/pypi/dm/pbr.svg
  34. :target: https://pypi.python.org/pypi/pbr/
  35. :alt: Downloads
  36. PBR is a library that injects some useful and sensible default behaviors
  37. into your setuptools run. It started off life as the chunks of code that
  38. were copied between all of the `OpenStack`_ projects. Around the time that
  39. OpenStack hit 18 different projects each with at least 3 active branches,
  40. it seemed like a good time to make that code into a proper reusable library.
  41. PBR is only mildly configurable. The basic idea is that there's a decent
  42. way to run things and if you do, you should reap the rewards, because then
  43. it's simple and repeatable. If you want to do things differently, cool! But
  44. you've already got the power of Python at your fingertips, so you don't
  45. really need PBR.
  46. PBR builds on top of the work that `d2to1`_ started to provide for declarative
  47. configuration. `d2to1`_ is itself an implementation of the ideas behind
  48. `distutils2`_. Although `distutils2`_ is now abandoned in favor of work towards
  49. `PEP 426`_ and Metadata 2.0, declarative config is still a great idea and
  50. specifically important in trying to distribute setup code as a library
  51. when that library itself will alter how the setup is processed. As Metadata
  52. 2.0 and other modern Python packaging PEPs come out, PBR aims to support
  53. them as quickly as possible.
  54. * License: Apache License, Version 2.0
  55. * Documentation: https://docs.openstack.org/pbr/latest/
  56. * Source: https://git.openstack.org/cgit/openstack-dev/pbr
  57. * Bugs: https://bugs.launchpad.net/pbr
  58. * Change Log: https://docs.openstack.org/pbr/latest/user/history.html
  59. .. _d2to1: https://pypi.python.org/pypi/d2to1
  60. .. _distutils2: https://pypi.python.org/pypi/Distutils2
  61. .. _PEP 426: http://legacy.python.org/dev/peps/pep-0426/
  62. .. _OpenStack: https://www.openstack.org/