-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
28 lines (26 loc) · 810 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
"""
*******************************************************
*
* BayesFit - SETUP FILE
*
* Version: Version 2.4
* License: Apache 2.0
* Written by: Michael Slugocki
* Created on: September, 2017
* Last updated: February 17, 2024
*
*******************************************************
"""
from setuptools import setup
setup(name='bayesfit',
version='2.4',
description='Bayesian Psychometric Curve Fitting Module',
long_description=open('README.rst').read(),
long_description_content_type='text/markdown',
url='http://github.com/slugocm/BayesFit',
author='Michael Slugocki',
author_email='[email protected]',
license='Apache 2.0',
packages=['bayesfit'],
install_requires=['numpy', 'scipy', 'matplotlib'],
zip_safe=False)