forked from trofi/seekwatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 642 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# this setup.py is meant for people that
# don't have cython installed and just want
# to make seekwatcher go
#
from distutils.core import setup, Extension
import numpy
#import mpatch.version
#version=mpatch.version.version,
setup(name='seekwatcher',
version="0.50",
ext_modules=[
Extension('seekwatcher.rundata',
['seekwatcher/rundata.c'],
include_dirs = [numpy.get_include(),'.']),
Extension('seekwatcher.blkparse',
['seekwatcher/blkparse.c'],
include_dirs = [numpy.get_include(),'.'])
],
scripts=['cmd/seekwatcher'],
packages=['seekwatcher'])