-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 723 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='hdf5tools',
version='0.1.0',
author='Benjamin Farmer',
author_email='[email protected]',
packages=['hdf5tools'],
scripts=['bin/addtohdf5_xe15k.py','bin/evidence.py','bin/newevidences.py',\
'bin/quickinfo.py','bin/reweight.py','bin/summary.py','bin/treehdf5'],
url='http://pypi.python.org/pypi/hdf5tools/', #not really, just an example
license='LICENSE.txt',
description='A collection of analysis tools for performing Bayesian model \
comparison and parameter estimation, on data produced in MultiNest (PySUSY 2&3) \
format',
long_description=open('README.txt').read(),
# install_requires=[
# "MultiNest == 2.12",
# ],
)