-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
27 lines (25 loc) · 994 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
from setuptools import setup, find_packages
setup(
name='quantmodels', # Replace with your package name
version='1.0.0', # Replace with your package version
packages=find_packages(),
install_requires=[
],
entry_points={
'console_scripts': [
'quantmodels = quantmodels.opm:binomial_option_pricing', # Replace 'your_script_name' with the actual name of your script
],
},
author='Tamilselvan_Arjunan',
author_email='nishantamil@gmail.com',
description='A python based financial models simulation to estimate the value of π',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/arjunlimat/quantmodels', # Update with your GitHub repository URL
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)