-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (83 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
91 lines (83 loc) · 2.26 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
[project]
name = "krff-shell"
version = "1.5.0"
requires-python = ">=3.11"
description = "Public infrastructure for systematic anomaly screening across Korean listed companies"
authors = [{name = "pon00050"}]
license = {text = "MIT"}
readme = "README.md"
keywords = ["kosdaq", "dart", "beneish", "financial-forensics", "korea", "open-data"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"anthropic>=0.40.0",
"opendartreader",
"pykrx>=1.2.0",
"pandas",
"pyarrow",
"marimo",
"plotly",
"requests",
"tqdm",
"python-dotenv",
"typer>=0.9.0",
"s3fs>=2024.1.0",
"boto3>=1.34.0",
"duckdb>=1.0.0",
"setuptools<82",
"lxml",
"networkx>=3.0",
"kaleido>=0.2.1",
"pydantic>=2.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"jinja2>=3.1.0",
"cachetools>=5.3.0",
"fastmcp>=3.1.0",
"exchange-calendars>=4.13.2",
"holidays>=0.92",
"kr-trading-calendar",
"kr-forensic-core",
"kr-dart-pipeline",
"kr-anomaly-scoring",
"kr-stat-tests",
]
[project.scripts]
krff = "cli:app"
[project.urls]
Repository = "https://github.com/pon00050/krff-shell"
Issues = "https://github.com/pon00050/krff-shell/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["krff"]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"httpx>=0.24.0",
"pytest-asyncio>=0.23.0",
]
hosted = [
"finance-datareader",
"yfinance",
]
[tool.uv]
compile-bytecode = false
[tool.uv.sources]
kr-trading-calendar = { path = "../kr-trading-calendar", editable = true }
kr-forensic-core = { path = "../kr-forensic-core", editable = true }
kr-dart-pipeline = { path = "../kr-dart-pipeline", editable = true }
kr-anomaly-scoring = { path = "../kr-anomaly-scoring", editable = true }
kr-stat-tests = { path = "../kr-stat-tests", editable = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
asyncio_mode = "auto"