-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
30 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
setup(name='pymle-diffusion',
version='0.0.4',
description='Maximum Likelihood Estimation (MLE) and simulation for SDE',
long_description='Maximum Likelihood Estimation (MLE) and simulation for '
'Stochastic Differential Equations (SDE)',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering ',
"Operating System :: OS Independent",
],
keywords='sde mle maximum likelihood difussion estimation simulation',
url='https://github.com/jkirkby3/pymle',
author='Justin Lars Kirkby',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
'numba',
'setuptools',
'numpy',
'scipy',
'pandas',
],
include_package_data=True,
zip_safe=False)