-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (41 loc) · 1.56 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# ============================================================================
# \file setup.py
# \author M.A. Cleveland
# \date Feb 2018
# \note Copyright (C) 2018 Los Alamos National Security, LLC.
# All Rights Reserved.
# ============================================================================
#
# OPTIONS:
# build Provide python library and scripts in the build directory
# install Provide python library and scripts as part of a release.
# --build-lib=<dir> provide libraries and python files at <dir>
# --home=<dir> install libraries and python files at <dir>
#
# TYPICAL USE:
#
# python setup.py build --build-lib="${CMAKE_CURRENT_BINARY_DIR}/build/lib/"
# python setup.py install --home="${CMAKE_INSTALL_PREFIX}"
#
##---------------------------------------------------------------------------##
from opppy.version import __version__
try:
from setuptools import setup
except ImportError:
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='opppy',
version=__version__,
python_requires='>=3.6',
description='Output Parse-Pickle-Plot Python (OPPPY) library',
author='Mathew Cleveland',
author_email='[email protected]',
url='https://github.com/lanl/OPPPY',
install_requires=['numpy', 'scipy', 'matplotlib'],
packages=['opppy'])
##---------------------------------------------------------------------------##
# End of file
##---------------------------------------------------------------------------##