-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
26 lines (22 loc) · 848 Bytes
/
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
"""
hdmedians: High-dimensional medians.
"""
import numpy as np
from setuptools import setup, find_packages, Extension
from setuptools import setup, Extension
#from Cython.Distutils import build_ext
extensions = [Extension('hdmedians.geomedian',
['hdmedians/geomedian.pyx'],
include_dirs = [np.get_include()])]
setup(name='hdmedians',
packages=find_packages(),
setup_requires=['nose>=1.0', 'Cython>=0.23'],
install_requires=['numpy>=1.21', 'Cython>=0.23'],
version='0.14.2',
description='High-dimensional medians',
url='http://github.com/daleroberts/hdmedians',
author='Dale Roberts',
author_email='[email protected]',
license='Apache License, Version 2.0',
# cmdclass = {'build_ext': build_ext},
ext_modules = extensions)