-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
49 lines (43 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = [ "setuptools >= 75.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "data_formulator"
version = "0.1.4"
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"
]
[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"