1#!/usr/bin/python
2from distutils.core import setup, Extension
3
4VERSION = "1.1"
5
6setup(name = "python-nscang",
7      version = VERSION,
8      description = "Python NSCA-ng client",
9      author = "Alexander Golovko",
10      author_email = "alexandro@onsec.ru",
11      license = "BSD",
12      long_description = \
13"""
14Python NSCA-ng client.
15""",
16      ext_modules = [Extension("nscang",
17                               ["nscang.c", "client.c"],
18                               libraries = ["pthread", "ssl", "crypto"],
19                               define_macros = [("VERSION", '"%s"' % VERSION)])],
20      )
21