-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
172 lines (162 loc) · 3.64 KB
/
pyproject.toml
File metadata and controls
172 lines (162 loc) · 3.64 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "iceframe"
version = "0.10.0"
description = "A DataFrame-like library for working with Apache Iceberg tables"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Alex Merced", email = "alex@alexmerced.com"}
]
keywords = ["iceberg", "dataframe", "data engineering", "apache iceberg"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pyiceberg>=0.6.0",
"pyarrow>=14.0.0",
"polars>=0.19.0",
"python-dotenv>=1.0.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
aws = [
"s3fs>=2023.1.0",
"boto3>=1.28.0",
]
gcs = [
"gcsfs>=2023.1.0",
]
azure = [
"adlfs>=2023.1.0",
]
all = [
"iceframe[aws]",
"iceframe[gcs]",
"iceframe[azure]",
"iceframe[delta]",
"iceframe[lance]",
"iceframe[vortex]",
"iceframe[excel]",
"iceframe[gsheets]",
"iceframe[hudi]",
"iceframe[sql]",
"iceframe[xml]",
"iceframe[stats]",
"iceframe[api]",
"iceframe[hf]",
"iceframe[html]",
"iceframe[clipboard]",
"python-dotenv>=1.0.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.0.270",
"mypy>=1.3.0",
"python-dotenv>=1.0.0",
]
pdf = [
"fpdf2>=2.7.0",
"markdown-it-py>=3.0.0",
]
delta = ["deltalake>=0.15.0"]
lance = ["pylance>=0.9.0"]
vortex = ["vortex-data>=0.1.0"] # Assuming vortex-data based on research
excel = ["fastexcel>=0.9.0"]
gsheets = ["gspread>=6.0.0"]
hudi = ["getdaft>=0.2.0"]
mcp = ["mcp>=0.1.0"]
ingestion = [
"iceframe[delta,lance,vortex,excel,gsheets,hudi]",
]
cli = [
"typer>=0.9.0",
"rich>=13.0.0",
]
agent = [
"openai>=1.0.0",
"anthropic>=0.18.0",
"google-generativeai>=0.3.0",
"rich>=13.0.0",
]
cache = [
"diskcache>=5.6.0",
]
streaming = [
"kafka-python>=2.0.0",
]
monitoring = [
"psutil>=5.9.0",
"prometheus-client>=0.19.0",
]
notebook = [
"ipython>=8.0.0",
"ipywidgets>=8.0.0",
]
pydantic = [
"pydantic>=2.0.0",
]
sql = [
"connectorx>=0.3.0",
"sqlalchemy>=2.0.0",
]
xml = [
"lxml>=4.9.0",
]
stats = ["pyreadstat"]
api = ["requests"]
hf = ["datasets"]
html = ["lxml", "html5lib", "beautifulsoup4"]
clipboard = ["pyperclip"]
datafusion = [
"datafusion>=35.0.0",
]
distributed = [
"ray>=2.0.0",
]
viz = [
"altair>=5.0.0",
]
[project.scripts]
iceframe = "iceframe.cli:app"
iceframe-chat = "iceframe.agent_cli:app"
[project.urls]
Homepage = "https://github.com/alexmerced/iceframe"
Documentation = "https://github.com/alexmerced/iceframe/tree/main/docs"
Repository = "https://github.com/alexmerced/iceframe"
Issues = "https://github.com/alexmerced/iceframe/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["iceframe*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false