-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathsetup.py
29 lines (23 loc) · 1.08 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
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: OS Independent']
setuptools.setup(name='sampyl-mcmc',
version='0.3',
description='MCMC Samplers in Python & Numpy',
author='Mat Leonard',
author_email='[email protected]',
url='http://matatat.org/sampyl/',
packages=['sampyl', 'sampyl.samplers'],
classifiers=classifiers,
install_requires=['numpy', 'scipy', 'autograd'])