-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 880 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='stanRepEx',
version='0.1.0',
description='Replica Exchange Monte Carlo using PyStan',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='narrowlyapplicable',
url='https://github.com/narrowlyapplicable/stanRepEx',
packages=find_packages(),
keywords='mcmc replica-exchange pystan markov-chain-monte-carlo',
install_requires=['numpy>=1.15.0', 'pystan>=2.19.0'],
python_requires='>=3.6',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Proggramming Language :: Python :: 3',
'Proggramming Language :: Python :: 3.6',
'Proggramming Language :: Python :: 3.7',
'Proggramming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
)