-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.07 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
[project]
name = "quantlib-st"
authors = [
{ name="Rodion Lim", email="rodion.lim@gmail.com" },
]
version = "1.14.0"
description = "A quantitative finance library and cli for systematic trading"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2.4.0",
"pandas>=2.3.3",
"scipy>=1.17.0",
"PyYAML>=6.0.2",
]
[project.optional-dependencies]
dev = [
"pip>=25.3",
"pytest>=9.0.2",
"pyinstaller>=6.17.0",
"twine>=6.2.0",
]
[project.urls]
Homepage = "https://github.com/rodionlim/quantlib-st"
Issues = "https://github.com/rodionlim/quantlib-st/issues"
[project.scripts]
quantlib = "quantlib_st.cli.main:main"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[tool.pytest.ini_options]
testpaths = ["src", "tests"]
pythonpath = ["src", "src/quantlib_st"]
[build-system]
requires = ["setuptools>=80.9", "wheel"]
build-backend = "setuptools.build_meta"