tizen 2.4 release
[external/nghttp2.git] / python / setup.py.in
1 # nghttp2 - HTTP/2 C Library
2
3 # Copyright (c) 2013 Tatsuhiro Tsujikawa
4
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 import sys
25 from distutils.core import setup
26 from distutils.extension import Extension
27
28 if sys.platform == "win32":
29   LIBS = ['nghttp2_imp', 'ws2_32']
30 else:
31   LIBS = ['nghttp2']
32
33 setup(
34     name = 'python-nghttp2',
35     description = 'Python HTTP/2 library on top of nghttp2',
36     author = 'Tatsuhiro Tsujikawa',
37     version = '@PACKAGE_VERSION@',
38     author_email = 'tatsuhiro.t@gmail.com',
39     url = 'http://tatsuhiro-t.github.io/nghttp2/',
40     keywords = [],
41     ext_modules = [Extension("nghttp2",
42                              ["nghttp2.c"],
43                              include_dirs=['@top_srcdir@/lib',
44                                            '@top_srcdir@/lib/includes',
45                                            '@top_builddir@/lib/includes'],
46                              library_dirs=['@top_builddir@/lib/.libs'],
47                              libraries=LIBS)],
48     long_description='TBD'
49     )