xython 4.3.3__tar.gz → 4.3.5__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 (31) hide show
  1. {xython-4.3.3 → xython-4.3.5}/MANIFEST.in +5 -1
  2. {xython-4.3.3 → xython-4.3.5}/PKG-INFO +5 -1
  3. {xython-4.3.3 → xython-4.3.5}/pyproject.toml +34 -31
  4. {xython-4.3.3 → xython-4.3.5}/src/xython/__init__.py +1 -1
  5. {xython-4.3.3 → xython-4.3.5/src}/xython.egg-info/PKG-INFO +5 -1
  6. xython-4.3.5/src/xython.egg-info/SOURCES.txt +26 -0
  7. xython-4.3.5/src/xython.egg-info/top_level.txt +1 -0
  8. xython-4.3.3/src/setup.py +0 -44
  9. xython-4.3.3/xython.egg-info/SOURCES.txt +0 -45
  10. xython-4.3.3/xython.egg-info/top_level.txt +0 -2
  11. {xython-4.3.3 → xython-4.3.5}/README.md +0 -0
  12. {xython-4.3.3 → xython-4.3.5}/requirements.txt +0 -0
  13. {xython-4.3.3 → xython-4.3.5}/setup.cfg +0 -0
  14. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_auto.py +0 -0
  15. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_chrome.py +0 -0
  16. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_color.py +0 -0
  17. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_common.py +0 -0
  18. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_db.py +0 -0
  19. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_edge.py +0 -0
  20. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_excel.py +0 -0
  21. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_excel_event.py +0 -0
  22. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_hwp.py +0 -0
  23. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_list.py +0 -0
  24. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_map.py +0 -0
  25. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_outlook.py +0 -0
  26. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_re.py +0 -0
  27. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_time.py +0 -0
  28. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_util.py +0 -0
  29. {xython-4.3.3 → xython-4.3.5}/src/xython/xy_word.py +0 -0
  30. {xython-4.3.3 → xython-4.3.5/src}/xython.egg-info/dependency_links.txt +0 -0
  31. {xython-4.3.3 → xython-4.3.5/src}/xython.egg-info/requires.txt +0 -0
@@ -1,7 +1,11 @@
1
- include LICENSE
2
1
  include README.md
2
+ include LICENSE
3
3
  include requirements.txt
4
4
 
5
+ exclude src/pypi_uploader.py
6
+ exclude src/setup.py
7
+
8
+
5
9
  include src/xython/xy_auto.py
6
10
  include src/xython/xy_chrome.py
7
11
  include src/xython/xy_color.py
@@ -1,7 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xython
3
- Version: 4.3.3
3
+ Version: 4.3.5
4
+ Summary: xython package
4
5
  Author-email: "SJ.Park" <sjpkorea@naver.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourname/xython
8
+ Requires-Python: >=3.8
5
9
  Description-Content-Type: text/markdown
6
10
  Requires-Dist: korean_lunar_calendar
7
11
  Requires-Dist: arrow
@@ -1,31 +1,34 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "xython"
7
- version = "4.3.3"
8
- readme = {file = "README.md", content-type = "text/markdown"}
9
- authors = [
10
- {name = "SJ.Park", email = "sjpkorea@naver.com"}
11
- ]
12
- dependencies = [
13
- "korean_lunar_calendar",
14
- "arrow",
15
- "pywin32",
16
- "pyautogui",
17
- "folium",
18
- "DrissionPage",
19
- "screeninfo",
20
- "pywinauto",
21
- "psutil",
22
- ]
23
-
24
- [tool.setuptools]
25
- # 패키지로 포함할 리스트를 자동으로 찾도록 설정
26
- package-dir = {"" = "."}
27
-
28
- [tool.setuptools.packages.find]
29
- # 현재 폴더(.)에서 모든 하위 패키지를 찾습니다.
30
- where = ["."]
31
- include = ["*"]
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "xython"
7
+ version = "4.3.5"
8
+ description = "xython package"
9
+ readme = {file = "README.md", content-type = "text/markdown"}
10
+ requires-python = ">=3.8"
11
+ authors = [
12
+ {name = "SJ.Park", email = "sjpkorea@naver.com"}
13
+ ]
14
+ license = {text = "MIT"}
15
+ dependencies = [
16
+ "korean_lunar_calendar",
17
+ "arrow",
18
+ "pywin32",
19
+ "pyautogui",
20
+ "folium",
21
+ "DrissionPage",
22
+ "screeninfo",
23
+ "pywinauto",
24
+ "psutil",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/yourname/xython"
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["src"]
32
+
33
+ [tool.setuptools.package-dir]
34
+ "" = "src"
@@ -6,7 +6,7 @@ import inspect
6
6
  import os
7
7
  import sys
8
8
 
9
- __version__ = '4.3.3' #1
9
+ __version__ = '4.3.5' #1
10
10
  real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/") #2
11
11
  sys.path.append(real_path)
12
12
 
@@ -1,7 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xython
3
- Version: 4.3.3
3
+ Version: 4.3.5
4
+ Summary: xython package
4
5
  Author-email: "SJ.Park" <sjpkorea@naver.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourname/xython
8
+ Requires-Python: >=3.8
5
9
  Description-Content-Type: text/markdown
6
10
  Requires-Dist: korean_lunar_calendar
7
11
  Requires-Dist: arrow
@@ -0,0 +1,26 @@
1
+ MANIFEST.in
2
+ README.md
3
+ pyproject.toml
4
+ requirements.txt
5
+ src/xython/__init__.py
6
+ src/xython/xy_auto.py
7
+ src/xython/xy_chrome.py
8
+ src/xython/xy_color.py
9
+ src/xython/xy_common.py
10
+ src/xython/xy_db.py
11
+ src/xython/xy_edge.py
12
+ src/xython/xy_excel.py
13
+ src/xython/xy_excel_event.py
14
+ src/xython/xy_hwp.py
15
+ src/xython/xy_list.py
16
+ src/xython/xy_map.py
17
+ src/xython/xy_outlook.py
18
+ src/xython/xy_re.py
19
+ src/xython/xy_time.py
20
+ src/xython/xy_util.py
21
+ src/xython/xy_word.py
22
+ src/xython.egg-info/PKG-INFO
23
+ src/xython.egg-info/SOURCES.txt
24
+ src/xython.egg-info/dependency_links.txt
25
+ src/xython.egg-info/requires.txt
26
+ src/xython.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ xython
xython-4.3.3/src/setup.py DELETED
@@ -1,44 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- from setuptools import setup, find_packages
3
-
4
- setup(
5
- name='xython',
6
- version='4.3.0',
7
- url='https://www.xython.co.kr',
8
- install_requires=[
9
- "screeninfo",
10
- "pyperclip",
11
- "pywinauto",
12
- "psutil",
13
- "pywin32",
14
- "PyGetWindow",
15
- "pyautogui",
16
- "matplotlib",
17
- "folium",
18
- "arrow",
19
- "korean-lunar-calendar",
20
- "python-dateutil",
21
- "selenium",
22
- ],
23
- download_url='https://github.com/sjpark/xython/archive/v4.3.0.tar.gz',
24
- author='s.j.park',
25
- author_email='sjpkorea@naver.com',
26
- description="win32com + python + Office Automation = xython",
27
- packages=find_packages("src"),
28
- package_dir={"": "src"},
29
- include_package_data=True,
30
- package_data={
31
- "xython": ["*.*"],
32
- },
33
- long_description_content_type="text/markdown",
34
- long_description=open('README.md', "r", encoding='UTF8').read(),
35
- python_requires='>=3.8',
36
- zip_safe=False,
37
- classifiers=[
38
- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
39
- ],
40
- project_urls={
41
- 'Documentation': 'https://sjpkorea.github.io/xython.github.io/',
42
- 'Link 1': 'https://www.xython.co.kr',
43
- }
44
- )
@@ -1,45 +0,0 @@
1
- MANIFEST.in
2
- README.md
3
- pyproject.toml
4
- requirements.txt
5
- ./src/setup.py
6
- ./src/xython/__init__.py
7
- ./src/xython/xy_auto.py
8
- ./src/xython/xy_chrome.py
9
- ./src/xython/xy_color.py
10
- ./src/xython/xy_common.py
11
- ./src/xython/xy_db.py
12
- ./src/xython/xy_edge.py
13
- ./src/xython/xy_excel.py
14
- ./src/xython/xy_excel_event.py
15
- ./src/xython/xy_hwp.py
16
- ./src/xython/xy_list.py
17
- ./src/xython/xy_map.py
18
- ./src/xython/xy_outlook.py
19
- ./src/xython/xy_re.py
20
- ./src/xython/xy_time.py
21
- ./src/xython/xy_util.py
22
- ./src/xython/xy_word.py
23
- src/setup.py
24
- src/xython/__init__.py
25
- src/xython/xy_auto.py
26
- src/xython/xy_chrome.py
27
- src/xython/xy_color.py
28
- src/xython/xy_common.py
29
- src/xython/xy_db.py
30
- src/xython/xy_edge.py
31
- src/xython/xy_excel.py
32
- src/xython/xy_excel_event.py
33
- src/xython/xy_hwp.py
34
- src/xython/xy_list.py
35
- src/xython/xy_map.py
36
- src/xython/xy_outlook.py
37
- src/xython/xy_re.py
38
- src/xython/xy_time.py
39
- src/xython/xy_util.py
40
- src/xython/xy_word.py
41
- xython.egg-info/PKG-INFO
42
- xython.egg-info/SOURCES.txt
43
- xython.egg-info/dependency_links.txt
44
- xython.egg-info/requires.txt
45
- xython.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- dist
2
- src
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes