-
Notifications
You must be signed in to change notification settings - Fork 89
/
setup.py
31 lines (27 loc) · 981 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
30
#!/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 = "2.12",
description = "Access modules for the MultiNest and Cuba integration libraries",
author = "Johannes Buchner",
author_email = "[email protected]",
maintainer = "Johannes Buchner",
maintainer_email = "[email protected]",
url = "https://johannesbuchner.github.io/PyMultiNest/",
license = "GPLv3",
packages = ["pymultinest", "pycuba"],
provides = ["pymultinest", "pycuba"],
requires = ["numpy (>=1.5)", "matplotlib", "scipy"],
scripts=['multinest_marginals.py', 'multinest_marginals_corner.py', 'multinest_marginals_fancy.py'],
long_description=long_description,
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)