|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "gohighlevel-api-client" |
| 7 | +version = "1.0.0" |
| 8 | +description = "GoHighLevel Python SDK - Official API client for GoHighLevel platform" |
| 9 | +readme = "README.md" |
| 10 | +license = {text = "MIT"} |
| 11 | +authors = [ |
| 12 | + {name = "HighLevel", email = "marketplace@gohighlevel.com"} |
| 13 | +] |
| 14 | +maintainers = [ |
| 15 | + {name = "HighLevel", email = "marketplace@gohighlevel.com"} |
| 16 | +] |
| 17 | +keywords = [ |
| 18 | + "gohighlevel", |
| 19 | + "api", |
| 20 | + "sdk", |
| 21 | + "client", |
| 22 | + "crm", |
| 23 | + "marketing", |
| 24 | + "automation" |
| 25 | +] |
| 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 | +] |
| 41 | +requires-python = ">=3.8" |
| 42 | +dependencies = [ |
| 43 | + "httpx>=0.24.0", |
| 44 | + "pydantic>=2.0.0", |
| 45 | + "typing-extensions>=4.0.0; python_version<'3.11'", |
| 46 | + "pymongo>=4.0.0", |
| 47 | + "cryptography>=3.0.0", |
| 48 | +] |
| 49 | + |
| 50 | +[project.optional-dependencies] |
| 51 | +dev = [ |
| 52 | + "build>=0.10.0", |
| 53 | + "twine>=4.0.0", |
| 54 | +] |
| 55 | + |
| 56 | +[project.urls] |
| 57 | +Homepage = "https://github.com/GoHighLevel/gohighlevel-python-sdk" |
| 58 | +Documentation = "https://docs.gohighlevel.com/python" |
| 59 | +Repository = "https://github.com/GoHighLevel/gohighlevel-python-sdk" |
| 60 | +"Bug Tracker" = "https://github.com/GoHighLevel/gohighlevel-python-sdk/issues" |
| 61 | +Changelog = "https://github.com/GoHighLevel/gohighlevel-python-sdk/blob/main/CHANGELOG.md" |
| 62 | + |
| 63 | +[tool.setuptools] |
| 64 | +packages = ["highlevel"] |
| 65 | +package-dir = {"" = "src"} |
| 66 | + |
| 67 | +[tool.setuptools.package-data] |
| 68 | +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 | +] |
0 commit comments