-
-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (48 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
61 lines (48 loc) · 1.3 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "financepy"
version = "1.0.2"
readme = "README.md"
authors = [
{name = "Dominic O'Kane"}
]
license = "GPL-3.0-or-later"
# Move keywords here
keywords = ["FINANCE", "OPTIONS", "BONDS", "VALUATION", "DERIVATIVES"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
description = "A Finance Securities Valuation Library"
# Python compatibility must match NumPy / SciPy reality
requires-python = ">=3.10,<3.14"
# 1. This is where your package list belongs
dependencies = [
"numpy>=2.3.5,<2.4",
"scipy>=1.16.3,<1.17",
"pandas>=2.3.3,<=2.4",
"matplotlib>=3.10.6,<3.11",
"numba>=0.62.1,<0.63",
"llvmlite>=0.45.0,<0.46"
]
[project.optional-dependencies]
dev = [
"ipython>=8.25,<9",
"mypy>=1.13,<2",
"typing-extensions>=4.12,<5",
]
test = [
"pytest>=8,<10",
"pytest-benchmark>=5.2",
"more-itertools>=10,<11",
]
[tool.setuptools]
[tool.setuptools.packages.find]
include = ["financepy*"]
exclude = ["venv*", "notebooks*", "golden_tests*", "tests*"]
[project.urls]
Source = "https://github.com/domokane/FinancePy"
Tracker = "https://github.com/domokane/FinancePy/issues"