File: setup.py

package info (click to toggle)
afflib 3.5.12-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,168 kB
  • ctags: 4,723
  • sloc: cpp: 21,800; ansic: 14,696; sh: 9,697; makefile: 531; python: 95
file content (14 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup, Extension

pyaff = Extension('pyaff',
                  libraries = ['afflib'],
                  sources = ['pyaff.c'])

setup (name = 'PyAFF',
       version = '0.1',
       description = 'Python wrapper for AFFLIB',
       author = 'David Collett',
       author_email = 'david.collett@gmail.com',
       url = 'www.pyflag.net',
       license = "GPL",
       ext_modules = [pyaff])