-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 734 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
setup(
name="pyfmc",
version="0.1.6",
author="Ethan Lee",
author_email="ethan2000.el@gmail.com",
description="Finance Monte-Carlo Simulation using PyTorch",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
packages=find_packages("."),
package_dir={"": "."},
url="https://github.com/ethanlee928/pyfmc",
install_requires=["torch==2.4.1", "tqdm==4.66.5", "numpy==1.24.4", "pandas==2.0.3", "matplotlib==3.7.1", "seaborn==0.12.2"],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)