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