-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (30 loc) · 1.1 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
from codecs import open
from os import path
from setuptools import find_packages, setup
from kanga import __version__
url = 'https://github.com/papamarkou/kanga'
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='kanga',
version=__version__,
description='MCMC diagnostics',
long_description=long_description,
url=url,
download_url='{0}/archive/v{1}.tar.gz'.format(url, __version__),
packages=find_packages(),
license='MIT',
author='Theodore Papamarkou',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3'
],
keywords=['Bayesian', 'diagnostics', 'Markov chains', 'MCMC', 'Monte Carlo'],
python_requires='>=3.6',
install_requires=['numpy>=1.19.2', 'scipy>=1.5.2', 'statsmodels>=0.12.0', 'matplotlib>=3.3.3', 'seaborn>=0.11.0']
)