Skip to content

Commit 0741936

Browse files
committed
..
1 parent be28438 commit 0741936

File tree

6 files changed

+23
-95
lines changed

6 files changed

+23
-95
lines changed

PyTaskbar/ProgressAPI.py

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

PyTaskbar/TaskbarLib.tlb

-6.67 KB
Binary file not shown.

PyTaskbar/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

PyTaskbarProgress/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# The main library!

docs.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@ Unfortunately, I did not upload this to Pypi, so you cannot install it with pip.
2323

2424
### To install with wheel:
2525

26-
1.Download wheel from this distribution:[LINK](https://github.com/somePythonProgrammer/PyTaskbar/releases/tag/0.0.1).
26+
1. Download wheel from this distribution:[LINK](https://github.com/somePythonProgrammer/PyTaskbar/releases/tag/0.0.1).
2727

28-
2.Do "pip install path-to-wheel.whl"
28+
2. Do "pip install path-to-wheel.whl"
2929

30-
3.Try out the [example](#docs_example) now!
30+
3. Try out the [example](#docs_example) now!
3131

3232
### To install manually:
33-
1.Download wheel from this distribution:[LINK](https://github.com/somePythonProgrammer/PyTaskbar/releases/tag/0.0.1).
33+
1. Download wheel from this distribution:[LINK](https://github.com/somePythonProgrammer/PyTaskbar/releases/tag/0.0.1).
3434

35-
2.Once you have downloaded it, unzip the downloaded file.
35+
2. Once you have downloaded it, unzip the downloaded file.
3636

37-
3.Go to file explorer and get to the directory where you have cloned or unzipped the repository.
37+
3. Go to file explorer and get to the directory where you have cloned or unzipped the repository.
3838

39-
4.type 'cmd' in the place where you see the path.
39+
4. type 'cmd' in the place where you see the path.
4040

4141
![image](https://user-images.githubusercontent.com/74598401/119104885-69c01e80-ba3a-11eb-9c24-45eaf4bab5bf.png)
4242

43-
5.hit enter.
43+
5. hit enter.
4444

45-
6.type 'python install.py' and hit enter.
45+
6. type 'python install.py' and hit enter.
4646

47-
8.Try out the [example](#docs_example) now!
47+
8. Try out the [example](#docs_example) now!
4848

4949
##### [back to top](#index)
5050
##### [API docs](#main_object)
@@ -54,9 +54,9 @@ Unfortunately, I did not upload this to Pypi, so you cannot install it with pip.
5454
## Example:
5555

5656
import time
57-
import PyTaskbar
57+
import PyTaskbarProgress
5858

59-
prog = PyTaskbar.Progress()
59+
prog = PyTaskbarProgress.Progress()
6060
prog.init()
6161

6262
prog.setState('loading')
@@ -114,10 +114,10 @@ Unfortunately, I did not upload this to Pypi, so you cannot install it with pip.
114114
##### [back to top](#index)
115115
##### [back to API docs](#main_object)
116116

117-
import tbprog
117+
import PyTaskbarProgress
118118
import time
119119

120-
progress = Progress()
120+
progress = PyTaskbarProgress.Progress()
121121
progress.init()
122122

123123
#taskbar icon becoms green, or starts to display a loading animation
@@ -145,10 +145,10 @@ Unfortunately, I did not upload this to Pypi, so you cannot install it with pip.
145145
##### [back to top](#index)
146146
##### [back to API docs](#main_object)
147147

148-
import tbprog
148+
import PyTaskbarProgress
149149
import time
150150

151-
progress = Progress()
151+
progress = PyTaskbarProgress.Progress()
152152
progress.init()
153153

154154
for i in range(100):

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
import sys
33
import shutil
44

5-
# Copy the PyTaskbar/TaskbarLib.tlb file to the dist folder
5+
# Copy the PyTaskbarProgress/TaskbarLib.tlb file to the dist folder
66

77
def copy_tlb(dst):
8-
shutil.copy("PyTaskbar\\TaskbarLib.tlb", dst)
8+
shutil.copy("PyTaskbarProgress\\TaskbarLib.tlb", dst)
99

1010
sitepackages_path = sys.prefix + '\\Lib\\site-packages'
11-
libpath = sitepackages_path + '\\PyTaskbar\\TaskbarLib.tlb'.replace('\\', '/')
11+
libpath = sitepackages_path + '\\PyTaskbarProgress\\TaskbarLib.tlb'.replace('\\', '/')
1212

1313
setuptools.setup(
14-
name='PyTaskbar',
14+
name='PyTaskbarProgress',
1515
version='0.0.1',
1616
author='somePythonProgrammer',
1717
description='The ultimate taskbar progress python package!',
18-
packages = setuptools.find_packages(include=['PyTaskbar']),
19-
package_dir={'PyTaskbar': 'PyTaskbar'},
18+
packages = setuptools.find_packages(include=['PyTaskbarProgress']),
19+
package_dir={'PyTaskbarProgress': 'PyTaskbarProgress'},
2020
classifiers = [
2121
'License :: OSI Approved :: MIT License',
2222
'Operating System :: Microsoft :: Windows :: Windows 10',

0 commit comments

Comments
 (0)