Skip to content

Commit d5dc74a

Browse files
committed
Update project metadata and remove debug prints
- Added author information and a detailed project description in `pyproject.toml`. - Included license details and project URLs for better visibility. - Removed debug print statements from `__init__.py` to clean up the code.
1 parent 2e49a99 commit d5dc74a

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

pybt/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
from .__version__ import __author__, __author_email__, __license__
66
from .__version__ import __copyright__
77

8-
print("=========BT_API_KEY: ", os.getenv("BT_API_KEY"))
9-
print("=========PANEL_ADDRESS: ", os.getenv("PANEL_ADDRESS"))
10-
118
__all__ = [
129
'__title__',
1310
'__description__',

pyproject.toml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
[project]
22
name = "bt-python-sdk"
33
version = "1.0.0"
4-
description = "Add your description here"
4+
authors = [
5+
{ name="Adam Zhang", email="[email protected]" },
6+
]
7+
description = "Pybt is a Python SDK for the BT Panel API. It provides a comprehensive set of tools for managing and automating tasks on servers running the BaoTa Panel."
58
readme = "README.md"
69
requires-python = ">=3.9"
710
dependencies = [
811
"python-dotenv>=1.1.0",
912
"requests>=2.32.3",
1013
]
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: OS Independent",
17+
]
18+
license = "MIT"
19+
license-files = ["LICENSE"]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/adamzhang1987/bt-python-sdk"
23+
Issues = "https://github.com/adamzhang1987/bt-python-sdk/issues"
1124

1225
[dependency-groups]
1326
dev = [

0 commit comments

Comments
 (0)