File tree Expand file tree Collapse file tree 2 files changed +9
-17
lines changed
Expand file tree Collapse file tree 2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 1- [build-system ]
2- requires = [
3- " setuptools>=61" ,
4- ]
5- build-backend = " setuptools.build_meta"
6-
71[project ]
82name = " contiguity"
9- dynamic = [ " version " ]
3+ version = " 3.0.0 "
104description = " Contiguity's official Python SDK"
115readme = " README.md"
12- license = {file = " LICENSE.txt" }
6+ license = { file = " LICENSE.txt" }
137requires-python = " >=3.10"
14- authors = [
15- {name = " Contiguity" , email = " help@contiguity.support" },
16- ]
8+ authors = [{ name = " Contiguity" , email = " help@contiguity.support" }]
179keywords = [
1810 " python" ,
1911 " contiguity" ,
@@ -52,11 +44,9 @@ dev = [
5244[project .urls ]
5345Repository = " https://github.com/contiguity/python"
5446
55- [tool .setuptools ]
56- package-data = {contiguity = [" py.typed" ]}
57-
58- [tool .setuptools .dynamic ]
59- version = {attr = " contiguity.__version__" }
47+ [build-system ]
48+ requires = [" uv_build>=0.9.22" ]
49+ build-backend = " uv_build"
6050
6151[tool .ruff ]
6252src = [" src" ]
Original file line number Diff line number Diff line change 1+ from importlib .metadata import version
2+
13from ._auth import get_contiguity_token
24from ._client import ApiClient
35from .domains import Domains
@@ -41,4 +43,4 @@ def __init__(
4143 "Text" ,
4244 "WhatsApp" ,
4345)
44- __version__ = "3.0.0"
46+ __version__ = version ( "contiguity" )
You can’t perform that action at this time.
0 commit comments