forked from capaulson/pyKriging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 834 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
27
28
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from os import path, walk
here = path.abspath(path.dirname(__file__))
datadir = 'pyKriging/sampling_plans'
package_data = [ (d, [path.join(d, f) for f in files]) for d,folders,files in walk(datadir)]
data_files=[]
for i in package_data:
for j in i[1]:
data_files.append(j)
data_files = [path.relpath(file, datadir) for file in data_files]
setup(
name='pyKriging',
version='0.1.0',
zip_safe = False,
packages=find_packages(),
package_data={'pyKriging': ['sampling_plans/*']},
url='www.pykriging.com',
license='',
author='Chris Paulson',
author_email='[email protected]',
description='A Kriging Toolbox for Python',
install_requires=['scipy', 'numpy', 'dill', 'matplotlib','inspyred'],
)