forked from nanograv/PTMCMCSampler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·43 lines (37 loc) · 1.22 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
43
import os
import sys
import numpy
from setuptools import setup
from setuptools import Extension
import PTMCMCSampler
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name="PTMCMCSampler",
version=PTMCMCSampler.__version__,
author="Justin A. Ellis",
author_email="justin.ellis18@gmail.com",
packages=["PTMCMCSampler"],
package_dir={'PTMCMCSampler': 'PTMCMCSampler'},
url="https://github.com/jellis18/PTMCMCSampler",
license="MIT",
zip_safe=False,
description="Parallel tempering MCMC sampler written in Python",
long_description=open("README.md").read() + "\n\n"
+ "---------\n\n"
+ open("HISTORY.md").read(),
package_data={"": ["README.md", "HISTORY.md"]},
install_requires=["numpy==1.14.3",
"scipy==1.1.0",
"acor==1.1.1",
"mpi4py==3.0.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
)