virtualitics-cli 0.1.0__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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: virtualitics-cli
3
+ Version: 0.1.0
4
+ Summary: An easy-to-use command line interface for initializing, packaging, and deploying Custom Apps to a deployed instance of Predict from within a local development environment.
5
+ Author: Richard Mable
6
+ Author-email: richard.m@virtualitics.com
7
+ Requires-Python: >=3.11,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Requires-Dist: art (>=6.1,<7.0)
12
+ Requires-Dist: requests (>=2.31.0,<3.0.0)
13
+ Requires-Dist: typer[all] (>=0.12.0,<0.13.0)
14
+ Description-Content-Type: text/markdown
15
+
16
+
File without changes
@@ -0,0 +1,24 @@
1
+ [tool.poetry]
2
+ name = "virtualitics-cli"
3
+ version = "0.1.0"
4
+ description = """
5
+ An easy-to-use command line interface for initializing, packaging, and deploying Custom Apps to a deployed instance of Predict from within a local development environment."""
6
+ authors = ["Richard Mable <richard.m@virtualitics.com>"]
7
+ readme = "README.md"
8
+
9
+ #[tool.poetry.scripts]
10
+ #predict = "predict.predict_cli:app"
11
+
12
+ [tool.poetry.dependencies]
13
+ python = "^3.11"
14
+ typer = {extras = ["all"], version = "^0.12.0"}
15
+ art = "^6.1"
16
+ requests = "^2.31.0"
17
+
18
+ [tool.poetry.group.test.dependencies]
19
+ pytest = "^8.1.1"
20
+
21
+ [build-system]
22
+ requires = ["poetry-core"]
23
+ build-backend = "poetry.core.masonry.api"
24
+
File without changes