-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 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
[project]
# PyPI normalizes names to lowercase with hyphens removed; use lowercase here to match the repo name.
name = "factordbms"
version = "0.1.2"
description = "A comprehensive factor library management system for quantitative trading research"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"quantchdb>=0.2.0",
"python-dotenv>=0.19.0",
"PyYAML>=5.0",
"streamlit>=1.28.0",
"plotly>=5.0.0",
"networkx>=2.8.0",
"build>=1.4.0",
"twine>=6.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
]
[project.urls]
Homepage = "https://github.com/ElenYoung/FactorDBMS"
Repository = "https://github.com/ElenYoung/FactorDBMS"
Issues = "https://github.com/ElenYoung/FactorDBMS/issues"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
]