-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathsetup.py
executable file
·40 lines (35 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
import re
def find_version():
return re.search(r"^__version__ = '(.*)'$",
open('asn1tools/version.py', 'r').read(),
re.MULTILINE).group(1)
setup(name='asn1tools',
version=find_version(),
description='ASN.1 parsing, encoding and decoding.',
long_description=open('README.rst', 'r').read(),
author='Erik Moqvist',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords=['ASN.1', 'asn1'],
url='https://github.com/eerimoq/asn1tools',
packages=find_packages(exclude=['tests']),
install_requires=[
'pyparsing>=3.1.2',
'bitstruct'
],
extras_require={
'shell': ['prompt_toolkit'],
'cache': ['diskcache']
},
test_suite="tests",
entry_points={
'console_scripts': ['asn1tools=asn1tools.__init__:_main']
})