forked from jonghyunharrylee/pyPCGA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 829 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
#!/usr/bin/env python
"""pyPCGA : Prinicipal Component Geostatistical Approach
PCGA description wil be provided later
"""
import os
import sys
from setuptools import setup
from pyPCGA import __name__, __author__
if sys.argv[-1].endswith('setup.py'):
print('\nTo install, run "python setup.py install"\n')
sys.exit(-1)
setup(name=__name__,
description='pyPCGA is a Python package to run Principal Component Geostatistical Approach',
long_description='',
author=__author__,
author_email='[email protected]',
url='https://github.com/jonghyunharrylee/pyPCGA/',
license='New BSD',
install_requires=['numpy>=1.9.0','scipy>=0.18'],
platforms='Windows, Mac OS-X, Linux',
packages=['pyPCGA','pyPCGA.covariance'],
version='0.1.0')