Skip to content

Commit

Permalink
Merge pull request #18 from nathanielvarona/improvement/rename-cli
Browse files Browse the repository at this point in the history
[CLI] Rename CLI Feature Lib Folder
  • Loading branch information
nathanielvarona authored Mar 24, 2023
2 parents 1c7a4e1 + 46207c8 commit 5ac1e2a
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
- name: 'type: feature'
description: New feature is created.
color: 7FFBC6C
- name: 'type: imporovement'
- name: 'type: improvement'
description: Minor improvement of a feature.
color: 008A00
color: 8D7BE7
- name: 'type: bugs'
description: Partial fixes for under development feature.
color: D80073
Expand Down
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories:
- title: '💡 New Features'
labels: 'type: feature'

- title: '💡 Improvements'
- title: '🧩 Improvements'
labels: 'type: improvement'

- title: '🐞 Bug Fixes'
Expand Down
2 changes: 1 addition & 1 deletion cli/__init__.py → console/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import click

# Pritunl
from .command import user
from .commands import user

@click.group()
def run():
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [

packages = [
{ include = "pritunl_api"},
{ include = "cli"},
{ include = "console"},
{ include = "README.md", format = "sdist" },
{ include = "LICENSE", format = "sdist" },
]
Expand All @@ -54,7 +54,7 @@ repl = ["ipython", "ptpython"]
cli = ["click", "rich"]

[tool.poetry.scripts]
pritunl-api-cli = { callable = "cli:run", extras = ["cli"] }
pritunl-api-cli = { callable = "console:run", extras = ["cli"] }

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 5ac1e2a

Please sign in to comment.