forked from cooperative-computing-lab/awe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 811 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
29
"""
This file is part of AWE
Copyright (C) 2012- University of Notre Dame
This software is distributed under the GNU General Public License.
See the file COPYING for details.
"""
from distutils.core import setup
import os
import glob
def get_executables():
return glob.glob(os.path.join('scripts', '*'))
datafiles = glob.glob('*.tar.bz2')
datafiles.append('awe-ala.py')
setup( author = "Badi' Abdul-Wahid",
author_email = '[email protected]',
url = 'http://lcls.github.com/AWE/',
name = 'awe',
packages = ['awe'],
scripts = get_executables(),
data_files = datafiles,
platforms = ['Linux', 'Mac OS X'],
description = 'Accelerated Weighted Ensemble method for Molecular Dynamics using WorkQueue'
)