File: setup.py

package info (click to toggle)
nsca-ng 1.4-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,964 kB
  • ctags: 1,792
  • sloc: ansic: 12,396; sh: 4,032; makefile: 221; perl: 64; python: 15
file content (20 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python
from distutils.core import setup, Extension

VERSION = "1.1"

setup(name = "python-nscang",
      version = VERSION,
      description = "Python NSCA-ng client",
      author = "Alexander Golovko",
      author_email = "alexandro@onsec.ru",
      license = "BSD",
      long_description = \
"""
Python NSCA-ng client.
""",
      ext_modules = [Extension("nscang",
                               ["nscang.c", "client.c"],
                               libraries = ["pthread", "ssl", "crypto"],
                               define_macros = [("VERSION", '"%s"' % VERSION)])],
      )