forked from lanl/OPPPY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.48 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
#!/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__,
description='Output Parse-Pickle-Plot Python (OPPPY) library',
author='Mathew Cleveland',
author_email='cleveland@lanl.gov',
url='https://gitlab.lanl.gov/chaos/opppy',
packages=['opppy'])
##---------------------------------------------------------------------------##
# End of file
##---------------------------------------------------------------------------##