from distutils.core import setup setup(name='pasn1', version='2.0.0', description='An ASN.1 encoder/decoder with json like interface.', author='John-Mark Gurney', author_email='jmg@funkthat.com', url='https://github.com/jmgurney/pasn1', py_modules=['pasn1'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], extras_require = { 'dev': [ 'coverage' ], }, )