Better type and value name sanitization.
[asn2quickder] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 from distutils.core import setup
5
6 setup(
7     name='asn1ate',
8     version='0.4.1',
9     description='ASN.1 translation library.',
10     author='Kim Gräsman',
11     author_email='kim.grasman@gmail.com',
12     license='BSD',
13     long_description=open('README.txt').read(),
14     url='http://github.com/kimgr/asn1ate',
15     packages=[
16         'asn1ate',
17         'asn1ate.support',
18     ],
19     platforms=['any'],
20     requires=[
21         'pyparsing (>=2.0.0)',
22     ],
23     classifiers=[
24         'Development Status :: 3 - Alpha',
25         'Intended Audience :: Developers',
26         'License :: OSI Approved :: BSD License',
27         'Operating System :: OS Independent',
28         'Programming Language :: Python',
29         'Programming Language :: Python :: 3',
30         'Topic :: Software Development :: Code Generators',
31     ]
32 )