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
50 lines (44 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.14 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
[build-system]
requires = ["setuptools >= 75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "data_formulator"
version = "0.1.6.2"
requires-python = ">=3.9"
authors = [
{ name = "Chenglong Wang", email = "chenglong.wang@microsoft.com" },
{ name = "Dan Marshall", email = "danmar@microsoft.com" },
]
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 = [
"autopep8",
"jupyter",
"pandas",
"docker",
"namedlist",
"matplotlib",
"flask",
"flask-cors",
"openai",
"azure-identity",
"azure-keyvault-secrets",
"python-dotenv",
"vega_datasets",
"litellm",
]
[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"