uw-course 0.1.3__tar.gz → 1.0.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 (23) hide show
  1. {uw_course-0.1.3/uw_course.egg-info → uw_course-1.0.0}/PKG-INFO +1 -1
  2. {uw_course-0.1.3 → uw_course-1.0.0}/pyproject.toml +1 -1
  3. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/ClassSchedule/SearchInfo.py +1 -1
  4. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/ClassSchedule/runner.py +5 -4
  5. uw_course-1.0.0/uw_course/DB/__init__.py +0 -0
  6. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/DB/dbClass.py +1 -1
  7. uw_course-1.0.0/uw_course/Utiles/__init__.py +0 -0
  8. uw_course-1.0.0/uw_course/__init__.py +0 -0
  9. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/main.py +5 -4
  10. {uw_course-0.1.3 → uw_course-1.0.0/uw_course.egg-info}/PKG-INFO +1 -1
  11. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/SOURCES.txt +3 -0
  12. {uw_course-0.1.3 → uw_course-1.0.0}/LICENSE +0 -0
  13. {uw_course-0.1.3 → uw_course-1.0.0}/README.md +0 -0
  14. {uw_course-0.1.3 → uw_course-1.0.0}/setup.cfg +0 -0
  15. {uw_course-0.1.3/uw_course → uw_course-1.0.0/uw_course/ClassSchedule}/__init__.py +0 -0
  16. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/colorMessage.py +0 -0
  17. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/manageDBClass.py +0 -0
  18. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/randomColor.py +0 -0
  19. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/setting.py +0 -0
  20. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/dependency_links.txt +0 -0
  21. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/entry_points.txt +0 -0
  22. {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/requires.txt +0 -0
  23. {uw_course-0.1.3 → uw_course-1.0.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.3
3
+ Version: 1.0.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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "uw-course"
7
- version = "0.1.3"
7
+ version = "1.0.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" }
@@ -1,5 +1,5 @@
1
1
  import re
2
- from Utiles.colorMessage import *
2
+ from ..Utiles.colorMessage import *
3
3
 
4
4
 
5
5
  class Course():
@@ -1,8 +1,9 @@
1
- from ClassSchedule.SearchInfo import Course
1
+ from .SearchInfo import Course
2
+ from ..Utiles.randomColor import randomColor, randomGray
3
+ from ..setting import Setting
4
+ from ..Utiles.colorMessage import *
5
+
2
6
  from os import remove
3
- from Utiles.randomColor import randomColor, randomGray
4
- from setting import Setting
5
- from Utiles.colorMessage import *
6
7
 
7
8
  setting = Setting()
8
9
 
File without changes
@@ -1,4 +1,4 @@
1
- from Utiles.manageDBClass import connectDB
1
+ from ..Utiles.manageDBClass import connectDB
2
2
 
3
3
 
4
4
  class dbClass:
File without changes
File without changes
@@ -1,8 +1,9 @@
1
- from DB.dbClass import dbClass
2
- from ClassSchedule.runner import SearchCourse, makeSchedule, SearchAvalibleInTerm
3
- from Utiles.colorMessage import *
1
+ from .DB.dbClass import dbClass
2
+ from .ClassSchedule.runner import SearchCourse, makeSchedule, SearchAvalibleInTerm
3
+ from .Utiles.colorMessage import *
4
+ from .setting import Setting
5
+
4
6
  from os import system
5
- from setting import Setting
6
7
  import argparse
7
8
  import sys
8
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: uw-course
3
- Version: 0.1.3
3
+ Version: 1.0.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
@@ -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
File without changes
File without changes
File without changes