mirror of
https://github.com/wassname/optlib.git
synced 2026-06-26 16:00:12 +08:00
13 lines
354 B
Python
13 lines
354 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="optlib",
|
|
version="0.5.1",
|
|
description="A library for financial options pricing written in Python.",
|
|
url="http://github.com/bartolomed/optlib",
|
|
author="Davis Edwards & Daniel Rojas",
|
|
packages=["optlib"],
|
|
install_requires=["numpy", "scipy", "pandas", "requests"],
|
|
zip_safe=False
|
|
)
|