forked from modflowpy/pymake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (24 loc) · 994 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
import os
import sys
from setuptools import setup
from pymake.pymake import __version__
# trap someone trying to install pymake with something other
# than python 2 or 3
if not sys.version_info[0] in [2, 3]:
print('Sorry, pymake not supported in your Python version')
print(' Supported versions: 2 and 3')
print(' Your version of Python: {}'.format(sys.version_info[0]))
sys.exit(1) # return non-zero value for failure
setup(name='pymake',
description='pymake is a Python package to compile MODFLOW-based models.',
long_description='...TO DO...',
author='Christian D. Langevin',
author_email='langevin@usgs.gov',
url='https://github.com/modflowpy/pymake.git',
license='New BSD',
platforms='Windows, Mac OS-X, Linux',
install_requires=[], # ['pydotplus>=2.0'],
packages=['pymake'],
package_data={'': ['usgsprograms.txt']},
include_package_data=True,
version=__version__ )