forked from pypest/pyemu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 748 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import sys
#from distutils.core import setup
from setuptools import setup
long_description = \
"""pyemu is a set of python modules for interfacing with PEST and PEST++.
"""
setup(name="pyemu",
description=long_description,
long_description=long_description,
author="Jeremy White, Mike Fienen,Brioch Hemmings",
author_email='jtwhite1000@gmail.com,mnfienen@usgs.gov,b.hemmings@gns.cri.nz',
url='https://github.com/pypest/pyemu',
download_url = 'https://github.com/jtwhite79/pyemu/tarball/1.0.0',
license='New BSD',
platforms='Windows, Mac OS-X, Linux',
packages = ["pyemu","pyemu.pst","pyemu.plot","pyemu.utils","pyemu.mat","pyemu.prototypes"],
version="1.0.0")