forked from tianar/PTMCMCSampler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 1.25 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
from setuptools import setup
setup(
name="ptmcmcsampler",
author="Justin A. Ellis",
author_email="[email protected]",
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(),
long_description_content_type="text/markdown",
package_data={"": ["README.md", "HISTORY.md"]},
install_requires=["numpy>=1.16.3", "scipy>=1.2.0"],
python_requires=">=3.7",
extras_require={"mpi": ["mpi4py>=3.0.3"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)