uw-course 0.1.2__tar.gz → 0.2.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.
Files changed (24) hide show
  1. {uw_course-0.1.2/uw_course.egg-info → uw_course-0.2.0}/PKG-INFO +1 -5
  2. {uw_course-0.1.2 → uw_course-0.2.0}/README.md +0 -4
  3. {uw_course-0.1.2 → uw_course-0.2.0}/pyproject.toml +2 -2
  4. uw_course-0.2.0/uw_course/DB/__init__.py +0 -0
  5. uw_course-0.2.0/uw_course/Utiles/__init__.py +0 -0
  6. uw_course-0.2.0/uw_course/__init__.py +0 -0
  7. {uw_course-0.1.2 → uw_course-0.2.0/uw_course.egg-info}/PKG-INFO +1 -5
  8. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course.egg-info/SOURCES.txt +3 -0
  9. uw_course-0.2.0/uw_course.egg-info/entry_points.txt +2 -0
  10. uw_course-0.1.2/uw_course.egg-info/entry_points.txt +0 -2
  11. {uw_course-0.1.2 → uw_course-0.2.0}/LICENSE +0 -0
  12. {uw_course-0.1.2 → uw_course-0.2.0}/setup.cfg +0 -0
  13. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/ClassSchedule/SearchInfo.py +0 -0
  14. {uw_course-0.1.2/uw_course → uw_course-0.2.0/uw_course/ClassSchedule}/__init__.py +0 -0
  15. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/ClassSchedule/runner.py +0 -0
  16. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/DB/dbClass.py +0 -0
  17. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/Utiles/colorMessage.py +0 -0
  18. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/Utiles/manageDBClass.py +0 -0
  19. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/Utiles/randomColor.py +0 -0
  20. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/main.py +0 -0
  21. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course/setting.py +0 -0
  22. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course.egg-info/dependency_links.txt +0 -0
  23. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course.egg-info/requires.txt +0 -0
  24. {uw_course-0.1.2 → uw_course-0.2.0}/uw_course.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: uw-course
3
- Version: 0.1.2
3
+ Version: 0.2.0
4
4
  Summary: A course helper tool for managing UW courses schedule
5
5
  Author-email: Jiucheng Zang <zangjiucheng@gmail.com>
6
6
  License: MIT
@@ -22,11 +22,7 @@ Requires-Dist: reportlab
22
22
  # uw-course
23
23
 
24
24
  [![PyPI version](https://badge.fury.io/py/uw-course.svg)](https://badge.fury.io/py/uw-course)
25
- [![Downloads](https://pepy.tech/badge/uw-course)](https://pepy.tech/project/uw-course)
26
- [![Downloads](https://pepy.tech/badge/uw-course/month)](https://pepy.tech/project/uw-course)
27
- [![Downloads](https://pepy.tech/badge/uw-course/week)](https://pepy.tech/project/uw-course)
28
25
 
29
- [![GitHub issues](https://img.shields.io/github/issues/zangjiucheng/UWaterlooCourseHelperEngine)](
30
26
 
31
27
  This is a project for UWaterloo students to help them get course information and generate a schedule for the next term.
32
28
 
@@ -1,11 +1,7 @@
1
1
  # uw-course
2
2
 
3
3
  [![PyPI version](https://badge.fury.io/py/uw-course.svg)](https://badge.fury.io/py/uw-course)
4
- [![Downloads](https://pepy.tech/badge/uw-course)](https://pepy.tech/project/uw-course)
5
- [![Downloads](https://pepy.tech/badge/uw-course/month)](https://pepy.tech/project/uw-course)
6
- [![Downloads](https://pepy.tech/badge/uw-course/week)](https://pepy.tech/project/uw-course)
7
4
 
8
- [![GitHub issues](https://img.shields.io/github/issues/zangjiucheng/UWaterlooCourseHelperEngine)](
9
5
 
10
6
  This is a project for UWaterloo students to help them get course information and generate a schedule for the next term.
11
7
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "uw-course"
7
- version = "0.1.2"
7
+ version = "0.2.0"
8
8
  description = "A course helper tool for managing UW courses schedule"
9
9
  authors = [
10
10
  { name = "Jiucheng Zang", email = "zangjiucheng@gmail.com" }
@@ -29,7 +29,7 @@ homepage = "https://github.com/zangjiucheng/CourseExplorer"
29
29
  repository = "https://github.com/zangjiucheng/CourseExplorer"
30
30
 
31
31
  [project.scripts]
32
- perspective-transformer = "uw_course.main:main"
32
+ uw-course = "uw_course.main:main"
33
33
 
34
34
  [tool.pypi]
35
35
  repository = "https://pypi.org/project/uw-course"
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: uw-course
3
- Version: 0.1.2
3
+ Version: 0.2.0
4
4
  Summary: A course helper tool for managing UW courses schedule
5
5
  Author-email: Jiucheng Zang <zangjiucheng@gmail.com>
6
6
  License: MIT
@@ -22,11 +22,7 @@ Requires-Dist: reportlab
22
22
  # uw-course
23
23
 
24
24
  [![PyPI version](https://badge.fury.io/py/uw-course.svg)](https://badge.fury.io/py/uw-course)
25
- [![Downloads](https://pepy.tech/badge/uw-course)](https://pepy.tech/project/uw-course)
26
- [![Downloads](https://pepy.tech/badge/uw-course/month)](https://pepy.tech/project/uw-course)
27
- [![Downloads](https://pepy.tech/badge/uw-course/week)](https://pepy.tech/project/uw-course)
28
25
 
29
- [![GitHub issues](https://img.shields.io/github/issues/zangjiucheng/UWaterlooCourseHelperEngine)](
30
26
 
31
27
  This is a project for UWaterloo students to help them get course information and generate a schedule for the next term.
32
28
 
@@ -11,8 +11,11 @@ uw_course.egg-info/entry_points.txt
11
11
  uw_course.egg-info/requires.txt
12
12
  uw_course.egg-info/top_level.txt
13
13
  uw_course/ClassSchedule/SearchInfo.py
14
+ uw_course/ClassSchedule/__init__.py
14
15
  uw_course/ClassSchedule/runner.py
16
+ uw_course/DB/__init__.py
15
17
  uw_course/DB/dbClass.py
18
+ uw_course/Utiles/__init__.py
16
19
  uw_course/Utiles/colorMessage.py
17
20
  uw_course/Utiles/manageDBClass.py
18
21
  uw_course/Utiles/randomColor.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ uw-course = uw_course.main:main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- perspective-transformer = uw_course.main:main
File without changes
File without changes
File without changes