generated from bwrob/python_repo_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 1001 Bytes
/
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
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "options_dataframes"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.poetry]
name = "options_dataframes"
version = "0.1.0"
authors = ["bwrob"]
description = "High-performance Black-Scholes calculations for dataframes."
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2.2.2"
polars = "^1.8.2"
maturin = "^1.7.2"
pyarrow = "^17.0.0"
[tool.poetry.group.dev.dependencies]
pre_commit = "^3.3.2"
ipykernel = "^6.29.5"
jupyter = "^1.0"
[tool.docformatter]
recursive = true
in-place = true
black = true
pre-summary-newline = false
blank = true
[tool.basedpyright]
typeCheckingMode = "basic"
venvPath = "."