Commit 9bbd7a8a authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

python: add __version__

parent dcba568f
......@@ -3,6 +3,7 @@ from distutils.extension import Extension
setup(
name = 'python-spdylay',
# Also update __version__ in spdylay.pyx
version = '0.1.0',
description = 'SPDY library',
author = 'Tatsuhiro Tsujikawa',
......
......@@ -4,6 +4,9 @@ from libc.stdlib cimport malloc, free
from libc.string cimport memcpy, memset
from libc.stdint cimport uint8_t, uint16_t, uint32_t, int32_t
# Also update version in setup.py
__version__ = '0.1.0'
class EOFError(Exception):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment