-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
26 lines (22 loc) · 940 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
#!/usr/bin/env python
"""pyPCGA : Prinicipal Component Geostatistical Approach
PCGA description wil be provided later
"""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as history_file:
history = history_file.read()
setup(name='pyPCGA',
description='pyPCGA is a Python package to run Principal Component Geostatistical Approach',
long_description=readme + '\n\n' + history,
author='Jonghyun Harry Lee',
author_email='jonghyun.harry.lee@hawaii.edu',
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=find_packages(include=['pyPCGA',
'pyPCGA.*']),
include_package_data=True,
version='0.1.0')