-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
48 lines (38 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import glob
from setuptools import setup
from setuptools.extension import Extension
from setuptools.command import build_ext
ext = Extension("pymangle._mangle", ["pymangle/_mangle.c",
"pymangle/mangle.c",
"pymangle/cap.c",
"pymangle/polygon.c",
"pymangle/pixel.c",
"pymangle/point.c",
"pymangle/stack.c",
"pymangle/rand.c"])
class BuildExt(build_ext.build_ext):
'''Custom build_ext command to hide the numpy import
Inspired by http://stackoverflow.com/a/21621689/1860757'''
def finalize_options(self):
'''add numpy includes to the include dirs'''
build_ext.build_ext.finalize_options(self)
import numpy as np
self.include_dirs.append(np.get_include())
self.include_dirs.extend(glob.glob("pymangle/*h"))
exec(open('pymangle/version.py').read())
description = "A python code to read and work with Mangle masks."
with open('README.md') as fobj:
long_description = fobj.read()
setup(name="pymangle",
packages=['pymangle'],
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
version=__version__,
license="GPL",
install_requires=['numpy'],
ext_modules=[ext],
setup_requires=['numpy'],
cmdclass={'build_ext': BuildExt},
include_package_data=True,
)