A pure Python ASN.1 library. Supports dict and sets.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

24 linhas
815 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. extras_require = {
  20. 'dev': [ 'coverage' ],
  21. },
  22. )