File: setup.py

package info (click to toggle)
nsca-ng 1.6-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,520 kB
  • sloc: ansic: 13,246; sh: 634; makefile: 231; perl: 137; 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)])],
      )