File: setup.py

package info (click to toggle)
dds 2.1.2%2Bddd105-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,896 kB
  • sloc: cpp: 8,095; ansic: 281; python: 89; makefile: 87
file content (17 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys, os
from distutils.core import setup, Extension

# prepare the extension for building
pydds_ext = Extension('pydds', 
                      sources=['pydds.c', 'dds.cpp']
                     )

setup (name = "pydds",
       version = "1.00",
       author = "Bo Haglund",
       maintainer = "Alex Martelli",
       maintainer_email = "aleaxit@gmail.com",
       description = "Double Dummy Solver bridge module for Python",

       ext_modules = [ pydds_ext ]
)