-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 832 Bytes
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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "alphapurify"
version = "0.1.8"
description = "High-performance quantitative factor analysis and purification toolkit"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Elias Wu", email = "elaiswu71@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
]
dependencies = [
"pandas",
"polars",
"duckdb",
"plotly",
"numpy",
"scipy",
"pyarrow",
"joblib",
"scikit-learn",
"tqdm"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["alphapurify"]
exclude = ["tests*", "docs*"]