Skip to content

Commit 51736c8

Browse files
authored
Merge pull request #23 from gbbocchini/0.0.7
0.0.7
2 parents 427f491 + 804730b commit 51736c8

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

coolipy/constants.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,6 @@ class URL_MAP:
155155

156156

157157
API_BASE_ENTRYPOINT = "/api/v1"
158-
COOLIFY_DEFAULT_PROXY = "traefik"
159-
160-
161158
COOLIFY_DEFAULT_PROXY = COOLIFY_PROXY_TYPES.traefik
162159

163160

coolipy/models/servers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class ServerProxyModel:
1717
last_saved_settings: Optional[str] = None
1818
last_applied_settings: Optional[str] = None
1919
force_stop: Optional[bool] = None
20+
redirect_enabled: Optional[bool] = None
2021

2122

2223
@dataclass

coolipy/services/coolify_api/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def _infer_url_sufix_from_model(self, model, model_map):
6464

6565
if not url_complement:
6666
raise CoolipyAPIServiceException(
67-
f"model argument must be one of: {[i for i in model_map.keys()]}."
67+
f"model argument must be one of: {model_map.keys()}."
6868
)
6969

7070
return url_complement

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "coolipy"
9-
version = "0.0.6"
9+
version = "0.0.7"
1010
authors = [
1111
{ name="Gabriel Bocchini", email="gabrielbocchini@gmail.com" },
1212
]
13-
description = "Coolipy - (Un)oficial Coolify - coolify.io - Python client!"
13+
maintainers = [
14+
{ name="Gabriel Bocchini", email="gabrielbocchini@gmail.com" },
15+
]
16+
description = "Coolipy - (Un)official Coolify - coolify.io - Python client!"
17+
keywords = ["coolify", "rest client", "api client"]
1418
readme = "README.md"
1519
requires-python = ">=3.10"
1620
classifiers = [
21+
"Development Status :: 5 - Production/Stable",
22+
"Intended Audience :: Developers",
23+
"Intended Audience :: Education",
1724
"Programming Language :: Python :: 3",
1825
"License :: OSI Approved :: Apache Software License",
1926
"Operating System :: OS Independent",
@@ -25,6 +32,7 @@ dependencies = [
2532
[project.urls]
2633
Homepage = "https://github.com/gbbocchini/coolipy"
2734
Documentation = "https://coolipydocs.gabrielbocchini.com.br/"
35+
Repository = "https://github.com/gbbocchini/coolipy"
2836

2937
[tool.setuptools]
3038
packages = ["coolipy", "coolipy.models", "coolipy.services", "coolipy.services.coolify_api"]

0 commit comments

Comments
 (0)