You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Overhauled `PyLoadBar` class.
- Replaced "load" method with "start" method.
- Messages and labels are now set when initializing `PyLoadBar` class.
- Total iterations can now be set.
- Iterations now take random amount of time to complete to add realism.
- Min/Max time to complete iteration is set upon calling "start()".
- Re-wrote tests.
- Updated requirements.txt to be less strict.
- Updated "setup.py".
Signed-off-by: schlopp96 <71921821+schlopp96@users.noreply.github.com>
Copy file name to clipboardExpand all lines: setup.py
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,9 @@
7
7
8
8
setup(
9
9
name='PyLoadBar',
10
-
version="0.0.8",
11
-
description='Simple, easy-to-use loading sequence/progress bar module.',
10
+
version="0.0.9",
11
+
description=
12
+
'Easy-to-use loading sequence/progress bar generator, enabling users to customize start/finish messages, toggle visual progress meter, set amount of iterations, among other features.',
12
13
url='https://github.com/schlopp96/PyLoadBar',
13
14
author='schlopp96',
14
15
author_email='schloppdaddy@gmail.com',
@@ -20,16 +21,14 @@
20
21
install_requires=[reqs],
21
22
extras_require={"dev": ["pytest>=6.2.5"]},
22
23
classifiers=[
23
-
"Development Status :: 3 - Alpha",
24
-
"Intended Audience :: Developers",
24
+
"Development Status :: 3 - Alpha", "Intended Audience :: Developers",
25
25
"Intended Audience :: End Users/Desktop",
26
26
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
27
27
"Natural Language :: English",
28
28
"Operating System :: Microsoft :: Windows",
29
29
"Programming Language :: Python :: 3",
30
30
"Programming Language :: Python :: 3.9",
31
-
"Programming Language :: Python :: 3.10",
32
-
"Topic :: Utilities"
31
+
"Programming Language :: Python :: 3.10", "Topic :: Utilities"
0 commit comments