-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.56 KB
/
pyproject.toml
File metadata and controls
96 lines (87 loc) · 2.56 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
[project]
name = "arkalos"
version = "0.7.0"
description = "Arkalos is an easy-to-use framework for data analysis, building data apps, warehouses, AI agents, robots, ML, training LLMs with elegant syntax. It just works."
readme = "README.md"
authors = [
{ name = "Mev-Rael" }
]
license= "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["framework", "ai", "agent", "api", "ml", "warehouse", "etl", "notion", "airtable", "sqlite"]
requires-python = ">=3.13"
dependencies = [
"altair>=5.5.0",
"arrow>=1.3.0",
"beautifulsoup4>=4.13.3",
"datasets>=3.2.0",
"duckdb>=1.3.0",
"faker>=35.0.0",
"fastapi[standard]>=0.115.8",
"google-analytics-admin>=0.23.5",
"google-analytics-data>=0.18.17",
"google-api-python-client>=2.160.0",
"google-api-python-client-stubs>=1.29.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.1",
"ibis-framework[duckdb,sqlite]>=10.5.0",
"kneed>=0.8.5",
"lxml>=5.3.1",
"markdownify>=1.1.0",
"matplotlib>=3.10.0",
"nltk>=3.9.1",
"numpy>=2.2.2",
"ollama>=0.4.7",
"openai>=1.76.0",
"pandas>=2.2.3",
"pandas-stubs>=2.2.3.241126",
"playwright>=1.51.0",
"polars>=1.20.0",
"pydantic>=2.10.6",
"pytest>=8.3.5",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"scikit-learn>=1.6.1",
"scipy>=1.15.1",
"scipy-stubs>=1.15.3.0",
"seaborn>=0.13.2",
"sqlglot>=26.20.0",
"tabulate>=0.9.0",
"types-requests>=2.32.0.20241016",
"vega-datasets>=0.9.0",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"lxml-stubs>=0.5.1",
"mypy>=1.15.0",
"types-beautifulsoup4>=4.12.0.20250204",
]
[project.urls]
Homepage = "https://arkalos.com"
Documentation = "https://arkalos.com"
Repository = "https://github.com/arkaloscom/arkalos"
Issues = "https://github.com/arkaloscom/arkalos/issues"
Changelog = "https://github.com/arkaloscom/arkalos/blob/main/CHANGELOG.md"
Licesne = "https://github.com/arkaloscom/arkalos/blob/main/LICENSE.md"
Community = "https://x.com/i/communities/1889982611667534002"
[project.scripts]
arkalos = "arkalos.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.force-include]
"templates" = "arkalos/templates"
[tool.mypy]
warn_unused_ignores = true
[tool.mypy-google_auth_oauthlib.flow]
ignore_errors = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["mypy-google_auth_oauthlib.flow"]
ignore_errors = true
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:starlette.routing"
]