Skip to content

Commit 48bb9ca

Browse files
chore(release): v1.0.0-beta.1
1 parent a23418d commit 48bb9ca

2 files changed

Lines changed: 3 additions & 79 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gohighlevel-api-client"
7-
version = "1.0.0-beta"
7+
version = "1.0.0-beta.1"
88
description = "GoHighLevel Python SDK - Official API client for GoHighLevel platform"
99
readme = "README.md"
1010
license = {text = "MIT"}
1111
authors = [
1212
{name = "HighLevel", email = "marketplace@gohighlevel.com"}
1313
]
14-
maintainers = [
15-
{name = "HighLevel", email = "marketplace@gohighlevel.com"}
16-
]
1714
keywords = [
1815
"gohighlevel",
1916
"api",
@@ -23,36 +20,13 @@ keywords = [
2320
"marketing",
2421
"automation"
2522
]
26-
classifiers = [
27-
"Development Status :: 5 - Production/Stable",
28-
"Intended Audience :: Developers",
29-
"License :: OSI Approved :: MIT License",
30-
"Operating System :: OS Independent",
31-
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.8",
33-
"Programming Language :: Python :: 3.9",
34-
"Programming Language :: Python :: 3.10",
35-
"Programming Language :: Python :: 3.11",
36-
"Programming Language :: Python :: 3.12",
37-
"Topic :: Internet :: WWW/HTTP",
38-
"Topic :: Software Development :: Libraries :: Python Modules",
39-
"Topic :: Office/Business",
40-
]
4123
requires-python = ">=3.8"
4224
dependencies = [
4325
"httpx>=0.24.0",
4426
"pydantic>=2.0.0",
45-
"typing-extensions>=4.0.0; python_version<'3.11'",
4627
"pymongo>=4.0.0",
4728
"cryptography>=3.0.0",
4829
]
49-
50-
[project.optional-dependencies]
51-
dev = [
52-
"build>=0.10.0",
53-
"twine>=4.0.0",
54-
]
55-
5630
[project.urls]
5731
Homepage = "https://github.com/GoHighLevel/highlevel-api-python"
5832
Documentation = "https://marketplace.gohighlevel.com/docs/"
@@ -66,53 +40,3 @@ include-package-data = true
6640

6741
[tool.setuptools.package-data]
6842
highlevel = ["py.typed"]
69-
70-
[tool.black]
71-
line-length = 88
72-
target-version = ['py38']
73-
include = '\.pyi?$'
74-
exclude = '''
75-
/(
76-
\.eggs
77-
| \.git
78-
| \.hg
79-
| \.mypy_cache
80-
| \.tox
81-
| \.venv
82-
| _build
83-
| buck-out
84-
| build
85-
| dist
86-
)/
87-
'''
88-
89-
[tool.isort]
90-
profile = "black"
91-
multi_line_output = 3
92-
line_length = 88
93-
known_first_party = ["highlevel"]
94-
95-
[tool.mypy]
96-
python_version = "3.8"
97-
warn_return_any = true
98-
warn_unused_configs = true
99-
disallow_untyped_defs = true
100-
disallow_incomplete_defs = true
101-
check_untyped_defs = true
102-
disallow_untyped_decorators = true
103-
no_implicit_optional = true
104-
warn_redundant_casts = true
105-
warn_unused_ignores = true
106-
warn_no_return = true
107-
warn_unreachable = true
108-
strict_equality = true
109-
110-
[tool.pytest.ini_options]
111-
minversion = "7.0"
112-
addopts = "-ra -q --strict-markers --strict-config"
113-
testpaths = ["tests"]
114-
filterwarnings = [
115-
"error",
116-
"ignore::UserWarning",
117-
"ignore::DeprecationWarning",
118-
]

src/highlevel/highlevel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, Optional, Callable, Awaitable
1+
from typing import Any, Dict, Optional, Awaitable
22
import asyncio
33
import inspect
44
import copy
@@ -42,7 +42,7 @@
4242
from .services.workflows.workflows import Workflows
4343
from .error import GHLError
4444
from .storage import SessionStorage, MemorySessionStorage, ISessionData
45-
from .logging import Logger, LogLevel
45+
from .logging import Logger
4646
from .webhook import WebhookManager
4747
from .constants import UserType
4848

0 commit comments

Comments
 (0)