forked from sanjibs/bmcmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 912 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
31
32
33
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup
exec(open('bmcmc/version.py').read())
with open('README.rst') as f:
long_description = f.read()
setup(
name='bmcmc',
version=__version__,
description='An MCMC package for Bayesian data analysis',
long_description=long_description,
url='https://github.com/sanjibs/bmcmc',
author='Sanjib Sharma',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
install_requires=['ebfpy'],
packages=['bmcmc'],
include_package_data=True,
package_data={'': ['AUTHORS.rst','README.rst','LICENSE']},
)