-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
25 lines (23 loc) · 1.61 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
from setuptools import setup, Extension
pyUniDOE_module = Extension('_pyunidoe_swig', sources=['pyunidoe/pyunidoe_swig_wrap.cxx', 'pyunidoe/wrapper.cpp', 'pyunidoe/doe_optimizer.cpp', 'pyunidoe/doe_criteria.cpp',
'pyunidoe/doe_CD2.cpp', 'pyunidoe/doe_MD2.cpp', 'pyunidoe/doe_WD2.cpp',
'pyunidoe/doe_maximin.cpp', 'pyunidoe/doe_MC.cpp', 'pyunidoe/doe_A2.cpp'])
setup(name='pyunidoe',
version='0.1',
description='Efficient procedures for constructing uniform design of experiments under various space-filling criteria. It is based on a stochastic and adaptive threshold accepting algorithm with flexible initialization, adaptive threshold, and stochastic evolution. The package may also construct the augmented uniform designs in a sequential manner.',
author='Zebin Yang and Aijun Zhang',
author_email='yangzb2010@connect.hku.hk, ajzhang@umich.edu',
license='BSD',
packages=['pyunidoe'],
ext_modules=[pyUniDOE_module],
package_dir={'pyunidoe': 'pyunidoe'},
package_data={'pyunidoe': ['data/*.json']},
install_requires=['matplotlib', 'numpy', 'pandas', 'seaborn', 'joblib'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python'],
zip_safe=False)