Skip to content

Commit b21a883

Browse files
committed
Add PyPI keywords for LogBar
1 parent 1fb284a commit b21a883

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

logbar/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
"""Top-level package for the LogBar utility."""
2+
13
from .logbar import LogBar
4+
5+
__all__ = ["LogBar"]
6+
__version__ = "0.0.5"

pyproject.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[build-system]
2+
requires = ["setuptools>=61", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "LogBar"
7+
dynamic = ["version"]
8+
description = "A unified Logger and ProgressBar util with zero dependencies."
9+
readme = "README.md"
10+
requires-python = ">=3"
11+
license = { file = "LICENSE" }
12+
authors = [
13+
{ name = "ModelCloud", email = "qubitium@modelcloud.ai" }
14+
]
15+
classifiers = [
16+
"Programming Language :: Python :: 3",
17+
"License :: OSI Approved :: Apache Software License",
18+
"Operating System :: OS Independent",
19+
]
20+
keywords = [
21+
"logging",
22+
"progressbar",
23+
"progress bar",
24+
"cli",
25+
"terminal",
26+
"lightweight",
27+
"zero dependency",
28+
]
29+
dependencies = []
30+
31+
[project.urls]
32+
Homepage = "https://github.com/ModelCloud/LogBar"
33+
34+
[tool.setuptools.packages.find]
35+
where = ["."]
36+
include = ["logbar*"]
37+
38+
[tool.setuptools.dynamic]
39+
version = { attr = "logbar.__version__" }

setup.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)