-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.45 KB
/
pyproject.toml
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
[tool.poetry]
name = "vanilla_option_pricers"
version = "1.0.4"
description = "Implementation of fast options pricers and risk for Black-Scholes-Merton and Bachelier normal models"
license = "LICENSE.txt"
authors = ["Artur Sepp <[email protected]>"]
maintainers = ["Artur Sepp <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ArturSepp/VanillaOptionPricers"
documentation = "https://github.com/ArturSepp/VanillaOptionPricers"
keywords= ["Black-Scholes", "Black-Scholes-Merton", "Bachelier", "option pricing", "option delta"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial :: Investment",
]
packages = [ {include = "vanilla_option_pricers"} ]
[tool.poetry.urls]
"Issues" = "https://github.com/ArturSepp/VanillaOptionPricers/issues"
"Personal website" = "https://artursepp.com"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
numba = ">=0.56.4"
numpy = ">=1.22.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"