File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ client = gatey_sdk.Client()
2121
2222``` python
2323import 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).
2727client.capture_message(" Hello Python Gatey SDK!" , level = " DEBUG" )
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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 ,
You can’t perform that action at this time.
0 commit comments