forked from JohannesBuchner/PyMultiNest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 873 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except:
from distutils.core import setup
long_description = None
with open('README.rst') as file:
long_description = file.read()
setup(
name = "pymultinest",
version = "1.4",
description = "Access modules for MultiNest and APEMoST",
author = "Johannes Buchner",
author_email = "johannes.buchner.acad [@t] gmx.com",
maintainer = "Johannes Buchner",
maintainer_email = "johannes.buchner.acad [@t] gmx.com",
url = "http://johannesbuchner.github.com/PyMultiNest/",
license = "GPLv3",
packages = ["pymultinest", "pyapemost", "pycuba"],
provides = ["pymultinest", "pyapemost", "pycuba"],
requires = ["ctypesGsl", "numpy (>=1.5)", "matplotlib", "scipy"],
scripts=['multinest_marginals.py'],
long_description=long_description,
)