A pure Python ASN.1 library. Supports dict and sets.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

21 lignes
751 B

  1. from distutils.core import setup
  2. setup(name='pasn1',
  3. version='2.0.0',
  4. description='An ASN.1 encoder/decoder with json like interface.',
  5. author='John-Mark Gurney',
  6. author_email='jmg@funkthat.com',
  7. url='https://github.com/jmgurney/pasn1',
  8. py_modules=['pasn1'],
  9. classifiers=[
  10. 'Development Status :: 5 - Production/Stable',
  11. 'Intended Audience :: Developers',
  12. 'License :: OSI Approved :: BSD License',
  13. 'Operating System :: MacOS :: MacOS X',
  14. 'Operating System :: Microsoft :: Windows',
  15. 'Operating System :: POSIX',
  16. 'Programming Language :: Python',
  17. 'Topic :: Software Development :: Libraries :: Python Modules',
  18. ],
  19. )