crowdtime-cli 0.1.0__py3-none-any.whl
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.
- crowdtime_cli/__init__.py +3 -0
- crowdtime_cli/auth.py +69 -0
- crowdtime_cli/client.py +177 -0
- crowdtime_cli/commands/__init__.py +1 -0
- crowdtime_cli/commands/ai_cmd.py +211 -0
- crowdtime_cli/commands/auth_cmd.py +160 -0
- crowdtime_cli/commands/clients_cmd.py +150 -0
- crowdtime_cli/commands/config_cmd.py +91 -0
- crowdtime_cli/commands/favorites_cmd.py +128 -0
- crowdtime_cli/commands/log_cmd.py +298 -0
- crowdtime_cli/commands/org_cmd.py +134 -0
- crowdtime_cli/commands/projects_cmd.py +175 -0
- crowdtime_cli/commands/report_cmd.py +242 -0
- crowdtime_cli/commands/skill_cmd.py +266 -0
- crowdtime_cli/commands/tasks_cmd.py +101 -0
- crowdtime_cli/commands/timer_cmd.py +207 -0
- crowdtime_cli/config.py +125 -0
- crowdtime_cli/formatters.py +395 -0
- crowdtime_cli/main.py +334 -0
- crowdtime_cli/models.py +146 -0
- crowdtime_cli/oauth.py +107 -0
- crowdtime_cli/resolvers.py +80 -0
- crowdtime_cli/skills/crowdtime/SKILL.md +193 -0
- crowdtime_cli/skills/crowdtime/references/commands.md +659 -0
- crowdtime_cli/skills/crowdtime/references/workflows.md +286 -0
- crowdtime_cli/utils.py +166 -0
- crowdtime_cli-0.1.0.dist-info/METADATA +140 -0
- crowdtime_cli-0.1.0.dist-info/RECORD +31 -0
- crowdtime_cli-0.1.0.dist-info/WHEEL +4 -0
- crowdtime_cli-0.1.0.dist-info/entry_points.txt +3 -0
- crowdtime_cli-0.1.0.dist-info/licenses/LICENSE +77 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
CrowdTime CLI - Proprietary Software License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 IT Crowd SRL. All rights reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: This software and associated documentation files (the "Software") are
|
|
6
|
+
the proprietary property of IT Crowd SRL ("Company"). The Software is protected
|
|
7
|
+
by copyright laws and international treaty provisions.
|
|
8
|
+
|
|
9
|
+
1. GRANT OF LICENSE
|
|
10
|
+
|
|
11
|
+
Subject to the terms of this license, the Company grants you a limited,
|
|
12
|
+
non-exclusive, non-transferable, revocable license to install and use the
|
|
13
|
+
Software solely for your internal business purposes in connection with
|
|
14
|
+
a valid CrowdTime subscription.
|
|
15
|
+
|
|
16
|
+
2. RESTRICTIONS
|
|
17
|
+
|
|
18
|
+
You may NOT:
|
|
19
|
+
a) Copy, modify, adapt, translate, or create derivative works of the Software;
|
|
20
|
+
b) Reverse engineer, decompile, disassemble, or otherwise attempt to derive
|
|
21
|
+
the source code of the Software;
|
|
22
|
+
c) Redistribute, sublicense, rent, lease, lend, sell, or otherwise transfer
|
|
23
|
+
the Software or any rights therein to any third party;
|
|
24
|
+
d) Remove, alter, or obscure any proprietary notices, labels, or marks on
|
|
25
|
+
the Software;
|
|
26
|
+
e) Use the Software to build a competing product or service;
|
|
27
|
+
f) Use the Software in any manner that violates applicable laws or
|
|
28
|
+
regulations.
|
|
29
|
+
|
|
30
|
+
3. OWNERSHIP
|
|
31
|
+
|
|
32
|
+
The Software is licensed, not sold. The Company retains all right, title,
|
|
33
|
+
and interest in and to the Software, including all intellectual property
|
|
34
|
+
rights therein. No rights are granted to you other than those expressly
|
|
35
|
+
set forth in this license.
|
|
36
|
+
|
|
37
|
+
4. SUBSCRIPTION REQUIREMENT
|
|
38
|
+
|
|
39
|
+
Use of the Software requires an active CrowdTime subscription. The Company
|
|
40
|
+
reserves the right to verify your subscription status and to disable access
|
|
41
|
+
to the Software if your subscription lapses or is terminated.
|
|
42
|
+
|
|
43
|
+
5. DATA COLLECTION
|
|
44
|
+
|
|
45
|
+
The Software communicates with CrowdTime servers to provide its
|
|
46
|
+
functionality. By using the Software, you acknowledge that data will be
|
|
47
|
+
transmitted to and stored on CrowdTime servers in accordance with the
|
|
48
|
+
CrowdTime Privacy Policy.
|
|
49
|
+
|
|
50
|
+
6. NO WARRANTY
|
|
51
|
+
|
|
52
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
53
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
54
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. THE COMPANY DOES NOT
|
|
55
|
+
WARRANT THAT THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED.
|
|
56
|
+
|
|
57
|
+
7. LIMITATION OF LIABILITY
|
|
58
|
+
|
|
59
|
+
IN NO EVENT SHALL THE COMPANY BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
60
|
+
SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR
|
|
61
|
+
REVENUE, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA, USE,
|
|
62
|
+
GOODWILL, OR OTHER INTANGIBLE LOSSES, ARISING OUT OF OR IN CONNECTION WITH
|
|
63
|
+
YOUR USE OF THE SOFTWARE.
|
|
64
|
+
|
|
65
|
+
8. TERMINATION
|
|
66
|
+
|
|
67
|
+
This license is effective until terminated. The Company may terminate this
|
|
68
|
+
license at any time if you fail to comply with any term herein. Upon
|
|
69
|
+
termination, you must cease all use of the Software and destroy all copies
|
|
70
|
+
in your possession.
|
|
71
|
+
|
|
72
|
+
9. GOVERNING LAW
|
|
73
|
+
|
|
74
|
+
This license shall be governed by and construed in accordance with the laws
|
|
75
|
+
of Argentina, without regard to its conflict of laws principles.
|
|
76
|
+
|
|
77
|
+
For licensing inquiries: dev@itcrowdarg.com
|