Name | aitronos-cli JSON |
Version |
0.1.0
JSON |
| download |
home_page | https://github.com/Freddy-Development/Aitronos-CLI |
Summary | aitronos cli |
upload_time | 2025-02-21 07:43:36 |
maintainer | None |
docs_url | None |
author | Phillip Loacker |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2024 Aitronos
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
ai
cli
development
tools
|
VCS |
 |
bugtrack_url |
|
requirements |
pip
distro
wheel
cryptography
docutils
optional
setuptools
pillow
certifi
urllib3
requests
helper
idna
tomli
tomli-w
build
hatchling
twine
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Aitronos-CLI
A command-line interface tool for streamlining AI development workflows.
## For Users
### Installation
You can install Aitronos-CLI directly from PyPI:
```bash
pip install aitronos-alpha
```
Or from GitHub:
```bash
pip install git+https://github.com/Freddy-Development/Aitronos-CLI.git
```
### Usage
After installation, you can use the `aitronos` command in your terminal:
```bash
# Initialize a basic project structure
aitronos streamline init my-project
# Create a hello world example project
aitronos streamline hello-world my-hello-project
# Create a hello world with parameters
aitronos streamline hello-world-parameter my-param-project
# Create a template project
aitronos streamline template my-template-project
```
### Project Structure
After initialization, your project structure will look like this:
```
my-project/
├── .aitronos/
│ └── config.yaml
├── src/
│ └── main.py
└── requirements.txt
```
## For Developers
### Setting Up Development Environment
1. Clone the repository:
```bash
git clone https://github.com/yourusername/aitronos-alpha.git
cd aitronos-alpha
```
2. Create and activate a virtual environment (optional but recommended):
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```
3. Install in development mode:
```bash
pip install -e .
```
### Development Workflow
1. Make changes to the code in the `aitronos_alpha` directory
2. Test your changes locally:
```bash
# Test the CLI
aitronos streamline init test-project
# If the command is not found, you can also use:
python -m aitronos_alpha streamline init test-project
```
3. Run tests:
```bash
python -m pytest
```
### Project Structure for Developers
```
aitronos_alpha/
├── commands/
│ ├── hello_world_project/
│ ├── hellow_world_to_perameter/
│ ├── template/
│ └── streamline.py
├── cli.py
├── utils.py
└── __init__.py
```
### Adding New Commands
1. Create a new command module in the `commands` directory
2. Update `cli.py` to include your new command
3. Add tests for your command
4. Update documentation
## Requirements
- Python 3.8 or higher
- pip package manager
## Available Commands
- `aitronos streamline init <project-name>` - Initialize a basic project structure
- `aitronos streamline hello-world <project-name>` - Create a hello world example project
- `aitronos streamline hello-world-parameter <project-name>` - Create a hello world with parameters
- `aitronos streamline template <project-name>` - Create a template project
## License
This project is licensed under the MIT License - see the LICENSE file for details
Raw data
{
"_id": null,
"home_page": "https://github.com/Freddy-Development/Aitronos-CLI",
"name": "aitronos-cli",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "ai, cli, development, tools",
"author": "Phillip Loacker",
"author_email": "Phillip Loacker <phillip.loacker@aitronos.com>",
"download_url": "https://files.pythonhosted.org/packages/9c/ca/fb5936115a26d459440d9f7feab05c6f96c5668d45a9b03c70e234e60beb/aitronos_cli-0.1.0.tar.gz",
"platform": null,
"description": "# Aitronos-CLI\n\nA command-line interface tool for streamlining AI development workflows.\n\n## For Users\n\n### Installation\n\nYou can install Aitronos-CLI directly from PyPI:\n\n```bash\npip install aitronos-alpha\n```\n\nOr from GitHub:\n\n```bash\npip install git+https://github.com/Freddy-Development/Aitronos-CLI.git\n```\n\n### Usage\n\nAfter installation, you can use the `aitronos` command in your terminal:\n\n```bash\n# Initialize a basic project structure\naitronos streamline init my-project\n\n# Create a hello world example project\naitronos streamline hello-world my-hello-project\n\n# Create a hello world with parameters\naitronos streamline hello-world-parameter my-param-project\n\n# Create a template project\naitronos streamline template my-template-project\n```\n\n### Project Structure\n\nAfter initialization, your project structure will look like this:\n\n```\nmy-project/\n\u251c\u2500\u2500 .aitronos/\n\u2502 \u2514\u2500\u2500 config.yaml\n\u251c\u2500\u2500 src/\n\u2502 \u2514\u2500\u2500 main.py\n\u2514\u2500\u2500 requirements.txt\n```\n\n## For Developers\n\n### Setting Up Development Environment\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/aitronos-alpha.git\ncd aitronos-alpha\n```\n\n2. Create and activate a virtual environment (optional but recommended):\n```bash\npython -m venv venv\nsource venv/bin/activate # On Windows: venv\\Scripts\\activate\n```\n\n3. Install in development mode:\n```bash\npip install -e .\n```\n\n### Development Workflow\n\n1. Make changes to the code in the `aitronos_alpha` directory\n\n2. Test your changes locally:\n```bash\n# Test the CLI\naitronos streamline init test-project\n\n# If the command is not found, you can also use:\npython -m aitronos_alpha streamline init test-project\n```\n\n3. Run tests:\n```bash\npython -m pytest\n```\n\n### Project Structure for Developers\n\n```\naitronos_alpha/\n\u251c\u2500\u2500 commands/\n\u2502 \u251c\u2500\u2500 hello_world_project/\n\u2502 \u251c\u2500\u2500 hellow_world_to_perameter/\n\u2502 \u251c\u2500\u2500 template/\n\u2502 \u2514\u2500\u2500 streamline.py\n\u251c\u2500\u2500 cli.py\n\u251c\u2500\u2500 utils.py\n\u2514\u2500\u2500 __init__.py\n```\n\n### Adding New Commands\n\n1. Create a new command module in the `commands` directory\n2. Update `cli.py` to include your new command\n3. Add tests for your command\n4. Update documentation\n\n## Requirements\n\n- Python 3.8 or higher\n- pip package manager\n\n## Available Commands\n\n- `aitronos streamline init <project-name>` - Initialize a basic project structure\n- `aitronos streamline hello-world <project-name>` - Create a hello world example project\n- `aitronos streamline hello-world-parameter <project-name>` - Create a hello world with parameters\n- `aitronos streamline template <project-name>` - Create a template project\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details\n\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 Aitronos\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE. ",
"summary": "aitronos cli",
"version": "0.1.0",
"project_urls": {
"Homepage": "https://github.com/Freddy-Development/Aitronos-CLI",
"Repository": "https://github.com/Freddy-Development/Aitronos-CLI.git"
},
"split_keywords": [
"ai",
" cli",
" development",
" tools"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0fe140862a67548f3b20cda910e2980379b056523fcf9f5b80faf6acfd2d34c4",
"md5": "d26e841d64cc4c9c9fdd1baa8c5636d6",
"sha256": "5cb3b56aa6fa12dd2954b4a6602a7d0d42aa715f196f26f545a091302c2e5f9b"
},
"downloads": -1,
"filename": "aitronos_cli-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d26e841d64cc4c9c9fdd1baa8c5636d6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 8304,
"upload_time": "2025-02-21T07:43:34",
"upload_time_iso_8601": "2025-02-21T07:43:34.747296Z",
"url": "https://files.pythonhosted.org/packages/0f/e1/40862a67548f3b20cda910e2980379b056523fcf9f5b80faf6acfd2d34c4/aitronos_cli-0.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ccafb5936115a26d459440d9f7feab05c6f96c5668d45a9b03c70e234e60beb",
"md5": "41335a9b3fa74895126a7808f807e9f1",
"sha256": "2041afef587ea35b9360a26a9c12408eb5655a3957a51596fe59925926007914"
},
"downloads": -1,
"filename": "aitronos_cli-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "41335a9b3fa74895126a7808f807e9f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 8299,
"upload_time": "2025-02-21T07:43:36",
"upload_time_iso_8601": "2025-02-21T07:43:36.957160Z",
"url": "https://files.pythonhosted.org/packages/9c/ca/fb5936115a26d459440d9f7feab05c6f96c5668d45a9b03c70e234e60beb/aitronos_cli-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-21 07:43:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Freddy-Development",
"github_project": "Aitronos-CLI",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "pip",
"specs": [
[
"~=",
"23.2.1"
]
]
},
{
"name": "distro",
"specs": [
[
"~=",
"1.9.0"
]
]
},
{
"name": "wheel",
"specs": [
[
"~=",
"0.41.3"
]
]
},
{
"name": "cryptography",
"specs": [
[
"~=",
"42.0.8"
]
]
},
{
"name": "docutils",
"specs": [
[
"~=",
"0.21.2"
]
]
},
{
"name": "optional",
"specs": [
[
"~=",
"0.0.1"
]
]
},
{
"name": "setuptools",
"specs": [
[
"~=",
"68.2.2"
]
]
},
{
"name": "pillow",
"specs": [
[
"~=",
"11.0.0"
]
]
},
{
"name": "certifi",
"specs": [
[
"~=",
"2024.7.4"
]
]
},
{
"name": "urllib3",
"specs": [
[
"~=",
"2.2.2"
]
]
},
{
"name": "requests",
"specs": [
[
"~=",
"2.32.3"
]
]
},
{
"name": "helper",
"specs": [
[
"~=",
"2.5.0"
]
]
},
{
"name": "idna",
"specs": [
[
"~=",
"3.7"
]
]
},
{
"name": "tomli",
"specs": [
[
"~=",
"2.0.1"
]
]
},
{
"name": "tomli-w",
"specs": [
[
"~=",
"1.0.0"
]
]
},
{
"name": "build",
"specs": [
[
"~=",
"1.0.3"
]
]
},
{
"name": "hatchling",
"specs": [
[
"~=",
"1.21.1"
]
]
},
{
"name": "twine",
"specs": [
[
"~=",
"4.0.2"
]
]
}
],
"lcname": "aitronos-cli"
}