METADATA 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. Metadata-Version: 2.1
  2. Name: pyasn1-modules
  3. Version: 0.3.0
  4. Summary: A collection of ASN.1-based protocols modules
  5. Home-page: https://github.com/pyasn1/pyasn1-modules
  6. Author: Ilya Etingof
  7. Author-email: etingof@gmail.com
  8. Maintainer: pyasn1 maintenance organization
  9. Maintainer-email: Christian Heimes <christian@python.org>
  10. License: BSD
  11. Project-URL: Source, https://github.com/pyasn1/pyasn1-modules
  12. Project-URL: Issues, https://github.com/pyasn1/pyasn1-modules/issues
  13. Project-URL: Changelog, https://github.com/pyasn1/pyasn1-modules/blob/master/CHANGES.txt
  14. Platform: any
  15. Classifier: Development Status :: 5 - Production/Stable
  16. Classifier: Environment :: Console
  17. Classifier: Intended Audience :: Developers
  18. Classifier: Intended Audience :: Education
  19. Classifier: Intended Audience :: Information Technology
  20. Classifier: Intended Audience :: System Administrators
  21. Classifier: Intended Audience :: Telecommunications Industry
  22. Classifier: License :: OSI Approved :: BSD License
  23. Classifier: Natural Language :: English
  24. Classifier: Operating System :: OS Independent
  25. Classifier: Programming Language :: Python :: 2
  26. Classifier: Programming Language :: Python :: 2.7
  27. Classifier: Programming Language :: Python :: 3
  28. Classifier: Programming Language :: Python :: 3.6
  29. Classifier: Programming Language :: Python :: 3.7
  30. Classifier: Programming Language :: Python :: 3.8
  31. Classifier: Programming Language :: Python :: 3.9
  32. Classifier: Programming Language :: Python :: 3.10
  33. Classifier: Programming Language :: Python :: 3.11
  34. Classifier: Programming Language :: Python :: Implementation :: CPython
  35. Classifier: Programming Language :: Python :: Implementation :: PyPy
  36. Classifier: Topic :: Communications
  37. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  38. Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7
  39. Description-Content-Type: text/markdown
  40. License-File: LICENSE.txt
  41. Requires-Dist: pyasn1 (<0.6.0,>=0.4.6)
  42. ASN.1 modules for Python
  43. ------------------------
  44. [![PyPI](https://img.shields.io/pypi/v/pyasn1-modules.svg?maxAge=2592000)](https://pypi.org/project/pyasn1-modules)
  45. [![Python Versions](https://img.shields.io/pypi/pyversions/pyasn1-modules.svg)](https://pypi.org/project/pyasn1-modules/)
  46. [![Build status](https://github.com/pyasn1/pyasn1-modules/actions/workflows/main.yml/badge.svg)](https://github.com/pyasn1/pyasn1-modules/actions/workflows/main.yml)
  47. [![Coverage Status](https://img.shields.io/codecov/c/github/pyasn1/pyasn1-modules.svg)](https://codecov.io/github/pyasn1/pyasn1-modules)
  48. [![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/pyasn1/pyasn1-modules/master/LICENSE.txt)
  49. The `pyasn1-modules` package contains a collection of
  50. [ASN.1](https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-X.208-198811-W!!PDF-E&type=items)
  51. data structures expressed as Python classes based on [pyasn1](https://github.com/pyasn1/pyasn1)
  52. data model.
  53. If ASN.1 module you need is not present in this collection, try using
  54. [Asn1ate](https://github.com/kimgr/asn1ate) tool that compiles ASN.1 documents
  55. into pyasn1 code.
  56. **NOTE:** The package is now maintained by *Christian Heimes* and
  57. *Simon Pichugin* in project https://github.com/pyasn1/pyasn1-modules.
  58. Feedback
  59. --------
  60. If something does not work as expected,
  61. [open an issue](https://github.com/pyasn1/pyasn1-modules/issues) at GitHub
  62. or post your question [on Stack Overflow](https://stackoverflow.com/questions/ask)
  63. New modules contributions are welcome via GitHub pull requests.
  64. Copyright (c) 2005-2020, [Ilya Etingof](mailto:etingof@gmail.com).
  65. All rights reserved.