forked from microsoft/data-formulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.24 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
[build-system]
requires = [ "setuptools >= 75.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "data_formulator"
version = "0.2.2"
requires-python = ">=3.9"
authors = [
]
readme = "README.md"
license = {file = "LICENSE"}
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",
"docker",
"namedlist",
"matplotlib",
"flask",
"flask-cors",
"openai",
"azure-identity",
"azure-kusto-data",
"azure-keyvault-secrets",
"python-dotenv",
"vega_datasets",
"litellm",
"duckdb",
"pyodbc"
]
[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"