-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
41 lines (40 loc) · 1.15 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
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name='fypy',
version='0.0.1',
description='Financial Quant model calibration and option pricing',
long_description='Financial Quant model calibration and option pricing',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering ',
"Operating System :: OS Independent",
],
keywords='quant option-pricing calibration fit levy stochastic-volatility',
url='https://github.com/jkirkby3/fypy',
author='Justin Lars Kirkby',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"matplotlib",
"numpy",
"python-dateutil",
"scipy",
"py_lets_be_rational>=1.0.1",
"pandas",
"requests-cache",
"yfinance",
],
extras_require={
"test": []
},
include_package_data=True,
zip_safe=False,
)