-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) 路 2.23 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (87 loc) 路 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "finsight"
version = "0.2.0"
description = "FinSight: Multi-agent financial deep research system for publication-ready reports"
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.10"
authors = [
{name = "RUC-NLPIR"},
]
keywords = ["finance", "research", "multi-agent", "llm", "report-generation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"openai>=1.0",
"aiohttp>=3.9",
"python-dotenv>=1.0",
"dill>=0.3",
"json-repair>=0.20",
"pandas>=2.0",
"numpy>=1.24",
"matplotlib>=3.7",
"seaborn>=0.12",
"pdfplumber>=0.10",
"python-docx>=1.0",
"chardet>=5.0",
"PyYAML>=6.0",
"yfinance>=0.2",
"fredapi>=0.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"hypothesis>=6.100",
"ruff>=0.4",
]
chinese = [
"akshare>=1.12",
"jieba>=0.42",
]
web = [
"crawl4ai>=0.3",
"playwright>=1.40",
"fake-useragent>=1.4",
]
[project.urls]
Homepage = "https://github.com/RUC-NLPIR/FinSight"
Repository = "https://github.com/RUC-NLPIR/FinSight"
Documentation = "https://deepwiki.com/RUC-NLPIR/FinSight"
"Bug Tracker" = "https://github.com/RUC-NLPIR/FinSight/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: integration tests requiring network access",
]
[tool.ruff]
target-version = "py310"
line-length = 120
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.ruff.isort]
known-first-party = ["src"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]