Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Old/LLTimer/setup.py
blob: 166ee64be13739a9d8aa2aec57cdd0e8f4ed24eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import distutils.sysconfig
from distutils.core import setup, Extension
import os, sys
from glob import glob




#ext_package = 'lltimer,'
#ext_modules = ext_modules,
setup (name = "lltimer",
       version = "0.0.1",
       description = "Low-Latency Periodic Timer",
       long_description =  """Low-Latency Periodic Timer""",
       author = "Douglas Eck",
       author_email = "eckdoug@iro.umontreal.ca",
       url = "http://www.iro.umontreal.ca/~eckdoug",
       ext_modules = [Extension('lltimer',['lltimer.cpp'])]
       )