-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (35 loc) · 1.09 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
36
from distutils.core import setup
setup(
name='gsum',
packages=['gsum'],
version='0.3',
description='A Bayesian model of series convergence using Gaussian sums',
author='Jordan Melendez',
author_email='[email protected]',
license='MIT',
url='https://github.com/buqeye/gsum.git',
download_url='',
keywords='EFT nuclear model gaussian process uncertainty quantification buqeyemodel buqeye',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'
],
install_requires=[
'docrep',
'gsl',
'numpy>=1.12.0',
'pandas',
'scipy>=1.4.0',
'seaborn',
'statsmodels',
'matplotlib',
'scikit-learn',
]
)