Skip to content

Commit 50982d9

Browse files
committed
Update package.
1 parent f915359 commit 50982d9

4 files changed

Lines changed: 20 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ client = gatey_sdk.Client()
2121

2222
```python
2323
import gatey_sdk
24-
client = gatey_sdk.Client()
24+
client = gatey_sdk.Client(project_id=PROJECT_ID, server_secret=PROJECT_SECRET)
2525

2626
# Will send message (capture).
2727
client.capture_message("Hello Python Gatey SDK!", level="DEBUG")

gatey_sdk/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__title__ = "gatey-sdk"
66
__description__ = "Python client for Gatey (https://gatey.florgon.space)"
77
__url__ = "https://github.com/florgon/gatey-sdk-py"
8-
__version__ = "0.0.0"
8+
__version__ = "0.0.1"
99
__author__ = "Florgon Team and Contributors"
1010
__author_email__ = "support@florgon.space"
1111
__license__ = "MIT"

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "gatey-sdk"
3+
version = "0.0.1"
4+
description = "Python client for Gatey (https://gatey.florgon.space)"
5+
authors = ["Florgon Team and Contributors"]
6+
license = "MIT"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.7"
10+
requests = "^2.28.1"
11+
12+
[tool.poetry.dev-dependencies]
13+
14+
[build-system]
15+
requires = ["poetry-core>=1.0.0"]
16+
build-backend = "poetry.core.masonry.api"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
package_dir={"gatey_sdk": "gatey_sdk"},
6060
include_package_data=True,
6161
license=version_file["__license__"],
62-
python_requires=">=3.10, <4",
63-
install_requires=[],
62+
python_requires=">=3.10",
63+
install_requires=["requests^2.28.1"],
6464
classifiers=classifiers,
6565
project_urls=project_urls,
6666
zip_safe=False,

0 commit comments

Comments
 (0)