Metadata-Version: 2.4
Name: optcalc
Version: 1.0.0
Summary: Black-Scholes option calculator written in C (fast Python extension)
Home-page: https://github.com/bjorn7474
Author: Björn Hallström
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# OptCalc

OptCalc is a fast C-based Black–Scholes option calculator with Python bindings.

## Example
```python
import optcalc

optcalc.set_params(100, 105, 30, 0.3, 0.01)
optcalc.genOptionSer()
print(optcalc.getCallArr())
