-
Notifications
You must be signed in to change notification settings - Fork 315
/
pyproject.toml
66 lines (57 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "lida"
authors = [
{ name="Victor Dibia", email="[email protected]" },
]
description = "LIDA: Automatic Generation of Visualizations from Data"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"llmx>=0.0.21a",
"pydantic",
"uvicorn",
"typer",
"fastapi",
"python-multipart",
"scipy",
"numpy",
"pandas",
"matplotlib",
"altair",
"seaborn",
"plotly",
"plotnine",
"statsmodels",
"networkx",
"geopandas",
"matplotlib-venn",
"wordcloud",
"kaleido>=0.2.1, !=0.2.1.post1"
]
optional-dependencies = {web = ["fastapi", "uvicorn"], transformers = ["llmx[transformers]"], tools=["geopy", "basemap", "basemap-data-hires"], infographics=["peacasso"]}
dynamic = ["version"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "lida.version.VERSION"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
include = ["lida*"]
exclude = ["*.tests*"]
namespaces = false
[tool.setuptools.package-data]
"lida" = ["*.*"]
[project.urls]
"Homepage" = "https://github.com/microsoft/lida"
"Bug Tracker" = "https://github.com/microsoft/lida/issues"
[project.scripts]
lida = "lida.cli:run"