-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1007 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
from setuptools import setup, find_packages
import sys
setup(
name = 'p2prev',
version = '0.1.0',
description = 'estimating population prevalence from unthresholded p-values from repeated n=1 experiments',
url = 'https://github.com/john-veillette/p2prev',
author = 'John Veillette',
author_email = '[email protected]',
license = 'BSD-3-Clause',
packages = find_packages(),
install_requires = ['pymc>=4.0', 'arviz', 'numpy', 'pandas'],
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
]
)