plot-agent 0.5.0__tar.gz → 0.5.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plot-agent
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: An AI-powered data visualization assistant using Plotly
5
5
  Author-email: andrewm4894 <andrewm4894@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/andrewm4894/plot-agent
@@ -10,6 +10,18 @@ Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.8
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
+ Requires-Dist: pandas
14
+ Requires-Dist: numpy
15
+ Requires-Dist: matplotlib
16
+ Requires-Dist: plotly
17
+ Requires-Dist: kaleido
18
+ Requires-Dist: langchain-core
19
+ Requires-Dist: langchain-openai
20
+ Requires-Dist: langgraph
21
+ Requires-Dist: pydantic
22
+ Requires-Dist: python-dotenv
23
+ Provides-Extra: posthog
24
+ Requires-Dist: posthog; extra == "posthog"
13
25
  Dynamic: license-file
14
26
 
15
27
  # Plot Agent
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plot-agent
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: An AI-powered data visualization assistant using Plotly
5
5
  Author-email: andrewm4894 <andrewm4894@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/andrewm4894/plot-agent
@@ -10,6 +10,18 @@ Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.8
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
+ Requires-Dist: pandas
14
+ Requires-Dist: numpy
15
+ Requires-Dist: matplotlib
16
+ Requires-Dist: plotly
17
+ Requires-Dist: kaleido
18
+ Requires-Dist: langchain-core
19
+ Requires-Dist: langchain-openai
20
+ Requires-Dist: langgraph
21
+ Requires-Dist: pydantic
22
+ Requires-Dist: python-dotenv
23
+ Provides-Extra: posthog
24
+ Requires-Dist: posthog; extra == "posthog"
13
25
  Dynamic: license-file
14
26
 
15
27
  # Plot Agent
@@ -9,4 +9,5 @@ plot_agent/prompt.py
9
9
  plot_agent.egg-info/PKG-INFO
10
10
  plot_agent.egg-info/SOURCES.txt
11
11
  plot_agent.egg-info/dependency_links.txt
12
+ plot_agent.egg-info/requires.txt
12
13
  plot_agent.egg-info/top_level.txt
@@ -0,0 +1,13 @@
1
+ pandas
2
+ numpy
3
+ matplotlib
4
+ plotly
5
+ kaleido
6
+ langchain-core
7
+ langchain-openai
8
+ langgraph
9
+ pydantic
10
+ python-dotenv
11
+
12
+ [posthog]
13
+ posthog
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "plot-agent"
7
- version = "0.5.0"
7
+ version = "0.5.1"
8
8
  authors = [
9
9
  { name="andrewm4894", email="andrewm4894@gmail.com" },
10
10
  ]
@@ -16,6 +16,21 @@ classifiers = [
16
16
  "License :: OSI Approved :: MIT License",
17
17
  "Operating System :: OS Independent",
18
18
  ]
19
+ dependencies = [
20
+ "pandas",
21
+ "numpy",
22
+ "matplotlib",
23
+ "plotly",
24
+ "kaleido",
25
+ "langchain-core",
26
+ "langchain-openai",
27
+ "langgraph",
28
+ "pydantic",
29
+ "python-dotenv",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ posthog = ["posthog"]
19
34
 
20
35
  [project.urls]
21
36
  "Homepage" = "https://github.com/andrewm4894/plot-agent"
File without changes
File without changes
File without changes