File tree Expand file tree Collapse file tree 3 files changed +44
-44
lines changed
Expand file tree Collapse file tree 3 files changed +44
-44
lines changed Original file line number Diff line number Diff line change 1+ """Top-level package for the LogBar utility."""
2+
13from .logbar import LogBar
4+
5+ __all__ = ["LogBar" ]
6+ __version__ = "0.0.5"
Original file line number Diff line number Diff line change 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__" }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments