Skip to content

Commit 104f4bb

Browse files
feat: prepare for opensourcing (#5)
1 parent 7cf69f6 commit 104f4bb

5 files changed

Lines changed: 31 additions & 5 deletions

File tree

Formula/team-cli.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ class TeamCli < Formula
33

44
desc "CLI for AWS TEAM (Temporary Elevated Access Management)"
55
homepage "https://github.com/DocPlanner/team-cli"
6-
url "https://github.com/DocPlanner/team-cli.git", tag: "v0.3.0"
7-
version "0.3.0"
6+
url "https://github.com/DocPlanner/team-cli.git", tag: "v0.3.1"
7+
version "0.3.1"
8+
license "MIT"
89

910

1011
depends_on "python@3.11"

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT/X Consortium License
2+
3+
Copyright (c) 2026 DocPlanner
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ source /path/to/completions/team.bash
202202

203203
## License
204204

205-
MIT
205+
MIT/X Consortium (`MIT`). See [LICENSE](LICENSE).

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "team-cli"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "CLI for AWS TEAM (Temporary Elevated Access Management)"
99
requires-python = ">=3.11"
10+
license = { text = "MIT" }
11+
classifiers = [
12+
"License :: OSI Approved :: MIT License",
13+
]
1014
dependencies = [
1115
"requests>=2.28",
1216
"InquirerPy>=0.3.4",

team_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""CLI for AWS TEAM (Temporary Elevated Access Management)."""
2-
__version__ = "0.3.0"
2+
__version__ = "0.3.1"

0 commit comments

Comments
 (0)