-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.51 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
[build-system]
requires = [ "setuptools >= 75.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "data_formulator"
version = "0.7.0a1"
requires-python = ">=3.11"
authors = [
{name = "Chenglong Wang", email = "chenglong.wang@microsoft.com"},
{name = "Dan Marshall", email = "danmar@microsoft.com"},
]
readme = "README.md"
license = "MIT"
description = "Data Formulator is research protoype data visualization tool powered by AI."
keywords = ["data visualization", "LLM", "AI"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"jupyter",
"pandas",
"flask",
"flask-cors",
"flask-limiter",
"openai",
"python-dotenv",
"vega_datasets",
"litellm",
"duckdb",
"numpy",
"vl-convert-python",
"backoff",
"beautifulsoup4",
"scikit-learn",
"azure-identity",
"azure-kusto-data",
"azure-keyvault-secrets",
"azure-storage-blob",
"google-cloud-bigquery",
"google-auth",
"db-dtypes",
"boto3",
"pymysql",
"pyodbc",
"pymongo",
"yfinance",
"connectorx>=0.4.5",
"pyarrow>=23.0.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/data-formulator"
Repository = "https://github.com/microsoft/data-formulator.git"
"Bug Tracker" = "https://github.com/microsoft/data-formulator/issues"
[tool.setuptools]
package-dir = {"" = "py-src"}
include-package-data = true
[project.scripts]
data_formulator = "data_formulator:run_app"
[tool.uv]
dev-dependencies = [
"build",
]