File: setup.py

package info (click to toggle)
afflib 3.6.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,320 kB
  • sloc: cpp: 21,493; ansic: 14,745; sh: 11,235; makefile: 538; 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])