-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.47 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
42
43
from setuptools import setup, find_packages
with open('README.md', 'r', encoding="utf-8", errors='ignore') as fh:
long_description = fh.read()
version = {}
with open("exotx/_version.py", encoding="utf-8") as fp:
exec(fp.read(), version)
setup(name='exotx',
version=version['__version__'],
description='Python library for pricing autocallables',
author='Sebastien Eveno',
author_email='sebastien.louis.eveno@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SebastienEveno/exotx',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy>=1.23.5',
'pandas>=1.5.1',
'scipy>=1.9.3',
'matplotlib',
'plotly>=4.12.0',
'quantlib>=1.26',
'pytest>=7.1.3',
'marshmallow>=3.19.0'
],
python_requires='>=3.10.2, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Information Analysis'
]
)