plot-agent 0.1.0__tar.gz → 0.1.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.
- {plot_agent-0.1.0 → plot_agent-0.1.1}/PKG-INFO +1 -6
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent.egg-info/PKG-INFO +1 -6
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent.egg-info/SOURCES.txt +0 -1
- {plot_agent-0.1.0 → plot_agent-0.1.1}/pyproject.toml +1 -1
- plot_agent-0.1.0/setup.py +0 -32
- {plot_agent-0.1.0 → plot_agent-0.1.1}/LICENSE +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/README.md +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent/__init__.py +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent/plotly_agent.py +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent.egg-info/dependency_links.txt +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/plot_agent.egg-info/top_level.txt +0 -0
- {plot_agent-0.1.0 → plot_agent-0.1.1}/setup.cfg +0 -0
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plot-agent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: An AI-powered data visualization assistant using Plotly
|
|
5
|
-
Home-page: https://github.com/andrewm4894/plot-agent
|
|
6
|
-
Author: Andre
|
|
7
5
|
Author-email: andrewm4894 <andrewm4894@gmail.com>
|
|
8
6
|
Project-URL: Homepage, https://github.com/andrewm4894/plot-agent
|
|
9
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -12,10 +10,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
10
|
Requires-Python: >=3.8
|
|
13
11
|
Description-Content-Type: text/markdown
|
|
14
12
|
License-File: LICENSE
|
|
15
|
-
Dynamic: author
|
|
16
|
-
Dynamic: home-page
|
|
17
13
|
Dynamic: license-file
|
|
18
|
-
Dynamic: requires-python
|
|
19
14
|
|
|
20
15
|
# Plot Agent
|
|
21
16
|
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plot-agent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: An AI-powered data visualization assistant using Plotly
|
|
5
|
-
Home-page: https://github.com/andrewm4894/plot-agent
|
|
6
|
-
Author: Andre
|
|
7
5
|
Author-email: andrewm4894 <andrewm4894@gmail.com>
|
|
8
6
|
Project-URL: Homepage, https://github.com/andrewm4894/plot-agent
|
|
9
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -12,10 +10,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
10
|
Requires-Python: >=3.8
|
|
13
11
|
Description-Content-Type: text/markdown
|
|
14
12
|
License-File: LICENSE
|
|
15
|
-
Dynamic: author
|
|
16
|
-
Dynamic: home-page
|
|
17
13
|
Dynamic: license-file
|
|
18
|
-
Dynamic: requires-python
|
|
19
14
|
|
|
20
15
|
# Plot Agent
|
|
21
16
|
|
plot_agent-0.1.0/setup.py
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
-
long_description = fh.read()
|
|
5
|
-
|
|
6
|
-
setup(
|
|
7
|
-
name="plot-agent",
|
|
8
|
-
version="0.1.0",
|
|
9
|
-
author="Andre",
|
|
10
|
-
author_email="andrewm4894@gmail.com",
|
|
11
|
-
description="An AI-powered data visualization assistant using Plotly",
|
|
12
|
-
long_description=long_description,
|
|
13
|
-
long_description_content_type="text/markdown",
|
|
14
|
-
url="https://github.com/andrewm4894/plot-agent",
|
|
15
|
-
packages=find_packages(),
|
|
16
|
-
classifiers=[
|
|
17
|
-
"Programming Language :: Python :: 3",
|
|
18
|
-
"License :: OSI Approved :: MIT License",
|
|
19
|
-
"Operating System :: OS Independent",
|
|
20
|
-
],
|
|
21
|
-
python_requires=">=3.8",
|
|
22
|
-
install_requires=[
|
|
23
|
-
"pandas",
|
|
24
|
-
"numpy",
|
|
25
|
-
"matplotlib",
|
|
26
|
-
"plotly",
|
|
27
|
-
"langchain-core",
|
|
28
|
-
"langchain",
|
|
29
|
-
"langchain-openai",
|
|
30
|
-
"pydantic",
|
|
31
|
-
],
|
|
32
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|