remy-cli 0.0.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.
- remy_cli-0.0.1/PKG-INFO +24 -0
- remy_cli-0.0.1/README.md +7 -0
- remy_cli-0.0.1/pyproject.toml +27 -0
- remy_cli-0.0.1/src/remy_cli/__init__.py +2 -0
remy_cli-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: remy-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Remy cooks while you sleep. Autonomous AI development CLI.
|
|
5
|
+
Project-URL: Homepage, https://letremycook.com
|
|
6
|
+
Project-URL: Repository, https://github.com/letremycook/remy
|
|
7
|
+
Author: letremycook
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: ai,autonomous,cli,code-generation,development
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Software Development
|
|
15
|
+
Requires-Python: >=3.13
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Remy
|
|
19
|
+
|
|
20
|
+
**Remy cooks while you sleep.**
|
|
21
|
+
|
|
22
|
+
Autonomous AI development CLI that turns ideas into shipped code — overnight, in parallel, with multi-model review.
|
|
23
|
+
|
|
24
|
+
Coming soon. Visit [letremycook.com](https://letremycook.com) for more.
|
remy_cli-0.0.1/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "remy-cli"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Remy cooks while you sleep. Autonomous AI development CLI."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.13"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [{name = "letremycook"}]
|
|
9
|
+
keywords = ["ai", "autonomous", "development", "cli", "code-generation"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Environment :: Console",
|
|
13
|
+
"Topic :: Software Development",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3.13",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://letremycook.com"
|
|
20
|
+
Repository = "https://github.com/letremycook/remy"
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["hatchling"]
|
|
24
|
+
build-backend = "hatchling.build"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/remy_cli"]
|