-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quool"
version = "7.0.17"
description = "Quantitative Toolkit - a helper in quant developing"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "ppoak", email = "ppoak@foxmail.com" }
]
keywords = ["quant", "framework", "finance"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0",
"pandas>=2.0",
"joblib>=1.5.2",
"pyarrow>=21.0.0",
"requests>=2.32.5",
"markdown>=3.8.2",
"retry>=0.9.2",
"apscheduler>=3.11.0",
"duckdb>=1.0",
"tabulate>=0.9.0",
]
[project.urls]
Homepage = "https://github.com/ppoak/quool"
[tool.setuptools.packages.find]
include = ["quool", "quool.*"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-mock>=3.15.1",
]