METADATA 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Metadata-Version: 2.0
  2. Name: decorator
  3. Version: 4.1.2
  4. Summary: Better living through Python with decorators
  5. Home-page: https://github.com/micheles/decorator
  6. Author: Michele Simionato
  7. Author-email: michele.simionato@gmail.com
  8. License: new BSD License
  9. Keywords: decorators generic utility
  10. Platform: All
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Natural Language :: English
  15. Classifier: Operating System :: OS Independent
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 3
  18. Classifier: Topic :: Software Development :: Libraries
  19. Classifier: Topic :: Utilities
  20. Decorator module
  21. =================
  22. :Author: Michele Simionato
  23. :E-mail: michele.simionato@gmail.com
  24. :Requires: Python from 2.6 to 3.6
  25. :Download page: http://pypi.python.org/pypi/decorator
  26. :Installation: ``pip install decorator``
  27. :License: BSD license
  28. Installation
  29. -------------
  30. If you are lazy, just perform
  31. `$ pip install decorator`
  32. which will install just the module on your system.
  33. If you prefer to install the full distribution from source, including
  34. the documentation, clone the `GitHub repo`_ or download the tarball_, unpack it and run
  35. `$ pip install .`
  36. in the main directory, possibly as superuser.
  37. .. _tarball: http://pypi.python.org/pypi/decorator
  38. .. _GitHub repo: https://github.com/micheles/decorator
  39. Testing
  40. --------
  41. If you have the source code installation you can run the tests with
  42. `$ python src/tests/test.py -v`
  43. or (if you have setuptools installed)
  44. `$ python setup.py test`
  45. Notice that you may run into trouble if in your system there
  46. is an older version of the decorator module; in such a case remove the
  47. old version. It is safe even to copy the module `decorator.py` over
  48. an existing one, since we kept backward-compatibility for a long time.
  49. Repository
  50. ---------------
  51. The project is hosted on GitHub. You can look at the source here:
  52. https://github.com/micheles/decorator
  53. Documentation
  54. ---------------
  55. The documentation has been moved to http://decorator.readthedocs.io/en/stable/
  56. You can download a PDF version of it from http://media.readthedocs.org/pdf/decorator/stable/decorator.pdf