-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (27 loc) · 757 Bytes
/
setup.py
File metadata and controls
27 lines (27 loc) · 757 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
25
26
27
from setuptools import setup,find_packages
#May need to install Pystan separately with pip
setup(name='pr_copula',
version='0.1.0',
description='Martingale Posteriors with Copulas',
url='http://github.com/edfong/copula',
author='Edwin Fong',
author_email='edwin.fong@stats.ox.ac.uk',
license='BSD 3-Clause',
packages=find_packages(),
install_requires=[
'numpy==1.26.4',
'scipy==1.12.0',
'scikit-learn',
'pandas',
'matplotlib',
'seaborn',
'joblib',
'tqdm',
'jax==0.4.25',
'jaxlib==0.4.25',
'pydataset',
'xlrd'
],
include_package_data=True,
python_requires='>=3.7'
)