This commit is contained in:
Jon Herron 2022-09-13 10:40:19 -04:00
parent 0f6a5f4b9a
commit e28d05be68
3 changed files with 15 additions and 15 deletions

2
app.py
View File

@ -45,7 +45,7 @@ import types
import typing
class PluginService:
PLUGIN_PREFIX = 'cmd_proxy_'
PLUGIN_PREFIX = 'connector_proxy_'
@staticmethod
def plugin_display_name(plugin_name):

24
poetry.lock generated
View File

@ -18,7 +18,15 @@ python-versions = ">=3.7"
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "cmd-proxy-xero"
name = "colorama"
version = "0.4.5"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "connector-xero"
version = "0.1.0"
description = ""
category = "main"
@ -31,15 +39,7 @@ xero-python = "^1.18.0"
[package.source]
type = "directory"
url = "../cmd-proxy_xero"
[[package]]
name = "colorama"
version = "0.4.5"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
url = "../connector-xero"
[[package]]
name = "flask"
@ -151,7 +151,7 @@ urllib3 = "*"
[metadata]
lock-version = "1.1"
python-versions = "^3.10"
content-hash = "9a7c40a72352b2b41afe787a0b91b0b2ef64da6a0296597978750694355e63c1"
content-hash = "10c0fe35690c72681156017601a3248ab4ae68b2081cbe440f886f668b966666"
[metadata.files]
certifi = [
@ -162,11 +162,11 @@ click = [
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
]
cmd-proxy-xero = []
colorama = [
{file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
{file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
]
connector-xero = []
flask = [
{file = "Flask-2.2.2-py3-none-any.whl", hash = "sha256:b9c46cc36662a7949f34b52d8ec7bb59c0d74ba08ba6cb9ce9adc1d8676d9526"},
{file = "Flask-2.2.2.tar.gz", hash = "sha256:642c450d19c4ad482f96729bd2a8f6d32554aa1e231f4f6b4e7e5264b16cca2b"},

View File

@ -1,5 +1,5 @@
[tool.poetry]
name = "cmd-proxy"
name = "connector-proxy"
version = "0.1.0"
description = ""
authors = ["Jon Herron <jon.herron@yahoo.com>"]
@ -8,7 +8,7 @@ authors = ["Jon Herron <jon.herron@yahoo.com>"]
python = "^3.10"
Flask = "*"
cmd-proxy_xero = {develop = true, path = "/home/jon/dev/cmd-proxy_xero"}
connector-xero = {develop = true, path = "/home/jon/dev/connector-xero"}
[tool.poetry.dev-dependencies]