python: add __version__
This commit is contained in:
parent
dcba568ff9
commit
9bbd7a8a04
|
@ -3,6 +3,7 @@ from distutils.extension import Extension
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'python-spdylay',
|
name = 'python-spdylay',
|
||||||
|
# Also update __version__ in spdylay.pyx
|
||||||
version = '0.1.0',
|
version = '0.1.0',
|
||||||
description = 'SPDY library',
|
description = 'SPDY library',
|
||||||
author = 'Tatsuhiro Tsujikawa',
|
author = 'Tatsuhiro Tsujikawa',
|
||||||
|
|
|
@ -4,6 +4,9 @@ from libc.stdlib cimport malloc, free
|
||||||
from libc.string cimport memcpy, memset
|
from libc.string cimport memcpy, memset
|
||||||
from libc.stdint cimport uint8_t, uint16_t, uint32_t, int32_t
|
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):
|
class EOFError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue