-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
30 lines (28 loc) · 966 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
29
30
import os
from setuptools import setup
here = os.path.realpath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
readme = f.read()
setup(
name='arbitragerepair',
packages=['arbitragerepair'],
description='Model-free algorithms of detecting and repairing spread, butterfly and calendar arbitrages in European option prices.',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
'cvxopt>=1.3.0',
'numpy>=1.19.0',
'pandas>=1.0.5'
],
python_requies='>=3.8',
url='https://github.com/vicaws/arbitragerepair',
version='1.1.0',
license='MIT',
author='Victor Wang',
author_email='[email protected]',
keywords=['option', 'arbitrage', 'quantitative finance', 'data cleansing', 'asset pricing'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
]
)