hackatimeprogressbar 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: hackatimeprogressbar
3
+ Version: 0.1.0
4
+ Summary: Display your set goal for Hackclub's Wakatime fork
5
+ Home-page: https://github.com/meepstertron/HackatimeProgressBar
6
+ Author: Jan Koch
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: requests
9
+ Requires-Dist: PyQt6
10
+ Dynamic: author
11
+ Dynamic: description
12
+ Dynamic: description-content-type
13
+ Dynamic: home-page
14
+ Dynamic: requires-dist
15
+ Dynamic: summary
16
+
17
+ # Hackatime Progress Bar
18
+ Hackatime progress bar lives in the corner of your screen constantly reminding you about your goal and how you should work on it!
19
+
20
+ Works on windows and linux (might work on mac?)
21
+
22
+ It is fully configurable, set your own goal and title.
23
+
24
+ ## Config
25
+ Default Config:
26
+ ```json
27
+ {
28
+ "hackatime_token": "00000000-0000-0000-0000-000000000000",
29
+ "username": "jan",
30
+ "daily_goal": 5,
31
+ "goal": "no goal :(, Set one in config"
32
+ }
33
+ ```
34
+ > Make sure to Set your hackatime token and username to track!
35
+
36
+ ## Installation
37
+
38
+ Installation is easy just use pip!
39
+
40
+ ```commandline
41
+ pip install hackatimeprogressbar
42
+ ```
43
+
44
+ and run with
45
+ ```commandline
46
+ hackatimeprogressbar
47
+ ```
48
+
49
+
50
+ ## Images
51
+ ![img.png](img.png)
52
+ ![img_1.png](img_1.png)
@@ -0,0 +1,14 @@
1
+ README.md
2
+ setup.py
3
+ HackatimeProgressBar.egg-info/PKG-INFO
4
+ HackatimeProgressBar.egg-info/SOURCES.txt
5
+ HackatimeProgressBar.egg-info/dependency_links.txt
6
+ HackatimeProgressBar.egg-info/entry_points.txt
7
+ HackatimeProgressBar.egg-info/requires.txt
8
+ HackatimeProgressBar.egg-info/top_level.txt
9
+ hackatimeprogressbar.egg-info/PKG-INFO
10
+ hackatimeprogressbar.egg-info/SOURCES.txt
11
+ hackatimeprogressbar.egg-info/dependency_links.txt
12
+ hackatimeprogressbar.egg-info/entry_points.txt
13
+ hackatimeprogressbar.egg-info/requires.txt
14
+ hackatimeprogressbar.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ hackatimeprogressbar = HackatimeProgressBar.main:main
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: hackatimeprogressbar
3
+ Version: 0.1.0
4
+ Summary: Display your set goal for Hackclub's Wakatime fork
5
+ Home-page: https://github.com/meepstertron/HackatimeProgressBar
6
+ Author: Jan Koch
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: requests
9
+ Requires-Dist: PyQt6
10
+ Dynamic: author
11
+ Dynamic: description
12
+ Dynamic: description-content-type
13
+ Dynamic: home-page
14
+ Dynamic: requires-dist
15
+ Dynamic: summary
16
+
17
+ # Hackatime Progress Bar
18
+ Hackatime progress bar lives in the corner of your screen constantly reminding you about your goal and how you should work on it!
19
+
20
+ Works on windows and linux (might work on mac?)
21
+
22
+ It is fully configurable, set your own goal and title.
23
+
24
+ ## Config
25
+ Default Config:
26
+ ```json
27
+ {
28
+ "hackatime_token": "00000000-0000-0000-0000-000000000000",
29
+ "username": "jan",
30
+ "daily_goal": 5,
31
+ "goal": "no goal :(, Set one in config"
32
+ }
33
+ ```
34
+ > Make sure to Set your hackatime token and username to track!
35
+
36
+ ## Installation
37
+
38
+ Installation is easy just use pip!
39
+
40
+ ```commandline
41
+ pip install hackatimeprogressbar
42
+ ```
43
+
44
+ and run with
45
+ ```commandline
46
+ hackatimeprogressbar
47
+ ```
48
+
49
+
50
+ ## Images
51
+ ![img.png](img.png)
52
+ ![img_1.png](img_1.png)
@@ -0,0 +1,36 @@
1
+ # Hackatime Progress Bar
2
+ Hackatime progress bar lives in the corner of your screen constantly reminding you about your goal and how you should work on it!
3
+
4
+ Works on windows and linux (might work on mac?)
5
+
6
+ It is fully configurable, set your own goal and title.
7
+
8
+ ## Config
9
+ Default Config:
10
+ ```json
11
+ {
12
+ "hackatime_token": "00000000-0000-0000-0000-000000000000",
13
+ "username": "jan",
14
+ "daily_goal": 5,
15
+ "goal": "no goal :(, Set one in config"
16
+ }
17
+ ```
18
+ > Make sure to Set your hackatime token and username to track!
19
+
20
+ ## Installation
21
+
22
+ Installation is easy just use pip!
23
+
24
+ ```commandline
25
+ pip install hackatimeprogressbar
26
+ ```
27
+
28
+ and run with
29
+ ```commandline
30
+ hackatimeprogressbar
31
+ ```
32
+
33
+
34
+ ## Images
35
+ ![img.png](img.png)
36
+ ![img_1.png](img_1.png)
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,22 @@
1
+ from pathlib import Path
2
+
3
+ from setuptools import setup, find_packages
4
+
5
+ here = Path(__file__).parent
6
+
7
+ setup(
8
+ name="hackatimeprogressbar",
9
+ version="0.1.0",
10
+ packages=find_packages(),
11
+ description="Display your set goal for Hackclub's Wakatime fork",
12
+ long_description=open(here / "README.md").read(),
13
+ long_description_content_type="text/markdown",
14
+ author="Jan Koch",
15
+ install_requires=["requests", "PyQt6"],
16
+ url="https://github.com/meepstertron/HackatimeProgressBar",
17
+ entry_points = {
18
+ "console_scripts": [
19
+ "hackatimeprogressbar=HackatimeProgressBar.main:main",
20
+ ]
21
+ }
22
+ )