-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 2.02 KB
/
setup.py
File metadata and controls
58 lines (56 loc) · 2.02 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
import os
# Read the long description from README.md
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="optionmc",
version="0.1.3.4",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"scipy>=1.7.0",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"pandas>=1.3.0",
],
entry_points={
"console_scripts": [
"optionmc=optionmc.cli:main",
],
},
author="Sandy Herho",
author_email="sandy.herho@email.ucr.edu",
description="Monte Carlo simulation for European option pricing with visualization capabilities",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sandyherho/optionmc",
project_urls={
"Documentation": "https://github.com/sandyherho/optionmc",
"Bug Reports": "https://github.com/sandyherho/optionmc/issues",
"Source Code": "https://github.com/sandyherho/optionmc",
},
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="finance, options, monte carlo, black-scholes, simulation, derivatives, pricing",
python_requires=">=3.7",
include_package_data=True,
package_data={
"optionmc": ["examples/*.py"],
},
)