-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (28 loc) · 1.01 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
#!/usr/bin/env python
#
# Setup script for pyemcee
#
import os
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
#import pyemcee
with codecs.open('README.rst', 'r', 'utf-8') as fd:
setup(name='pyemcee',
version="0.2.6",
description = 'pyemcee: Python implementation of the affine-invariant MCMC Hammer',
long_description=fd.read(),
author='Ashkbiz Danehkar',
author_email='ashkbiz.danehkar@students.mq.edu.au',
url='https://mcfit.github.io/pyemcee/',
download_url = 'https://github.com/mcfit/pyemcee',
keywords = ['pyemcee', 'MCMC', 'emcee', 'Python', 'ensemble sampler', 'hammer'],
license='http://www.gnu.org/licenses/gpl.html',
platforms=['any'],
packages=['pyemcee'],
#package_data={'pyemcee': ['*.txt', 'text/*.readme']},
data_files = [("", ["LICENSE"])],
install_requires=['numpy','scipy','matplotlib'],
)