xython 3.3.3__tar.gz → 3.3.4__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 (32) hide show
  1. {xython-3.3.3 → xython-3.3.4}/MANIFEST.in +3 -3
  2. {xython-3.3.3/src/xython.egg-info → xython-3.3.4}/PKG-INFO +3 -3
  3. {xython-3.3.3 → xython-3.3.4}/setup.py +20 -4
  4. {xython-3.3.3 → xython-3.3.4}/src/xython/__init__.py +3 -3
  5. {xython-3.3.3 → xython-3.3.4}/src/xython/anydb.py +377 -197
  6. {xython-3.3.3 → xython-3.3.4}/src/xython/basic_data.py +204 -8
  7. xython-3.3.4/src/xython/basic_data_for_han.py +2043 -0
  8. {xython-3.3.3 → xython-3.3.4}/src/xython/ganada.py +136 -97
  9. {xython-3.3.3 → xython-3.3.4}/src/xython/han.py +288 -108
  10. {xython-3.3.3 → xython-3.3.4}/src/xython/jfinder.py +63 -6
  11. {xython-3.3.3 → xython-3.3.4}/src/xython/pcell.py +1738 -1432
  12. {xython-3.3.3 → xython-3.3.4}/src/xython/pyclick.py +207 -11
  13. {xython-3.3.3 → xython-3.3.4}/src/xython/pynal.py +386 -224
  14. {xython-3.3.3 → xython-3.3.4}/src/xython/scolor.py +62 -28
  15. xython-3.3.3/src/xython/xy_list.py → xython-3.3.4/src/xython/xylist.py +44 -45
  16. xython-3.3.3/src/xython/xy_map.py → xython-3.3.4/src/xython/xymap.py +889 -355
  17. xython-3.3.3/src/xython/xy_web.py → xython-3.3.4/src/xython/xyweb.py +148 -82
  18. {xython-3.3.3 → xython-3.3.4}/src/xython/youtil.py +993 -1045
  19. {xython-3.3.3 → xython-3.3.4/src/xython.egg-info}/PKG-INFO +3 -3
  20. {xython-3.3.3 → xython-3.3.4}/src/xython.egg-info/SOURCES.txt +4 -3
  21. xython-3.3.4/src/xython.egg-info/requires.txt +16 -0
  22. xython-3.3.3/src/xython/basic_data_for_han.py +0 -2407
  23. {xython-3.3.3 → xython-3.3.4}/README.md +0 -0
  24. {xython-3.3.3 → xython-3.3.4}/requirements.txt +0 -0
  25. {xython-3.3.3 → xython-3.3.4}/setup.cfg +0 -0
  26. {xython-3.3.3 → xython-3.3.4}/src/xython/basic_data_for_xymap.py +0 -0
  27. {xython-3.3.3 → xython-3.3.4}/src/xython/mailmail.py +0 -0
  28. {xython-3.3.3 → xython-3.3.4}/src/xython/mygrid.py +0 -0
  29. {xython-3.3.3 → xython-3.3.4}/src/xython/pcell_event.py +0 -0
  30. {xython-3.3.3 → xython-3.3.4}/src/xython.egg-info/dependency_links.txt +0 -0
  31. {xython-3.3.3 → xython-3.3.4}/src/xython.egg-info/not-zip-safe +0 -0
  32. {xython-3.3.3 → xython-3.3.4}/src/xython.egg-info/top_level.txt +0 -0
@@ -14,8 +14,8 @@ include src/xython/pcell_event.py
14
14
  include src/xython/pyclick.py
15
15
  include src/xython/pynal.py
16
16
  include src/xython/scolor.py
17
- include src/xython/xy_list.py
18
- include src/xython/xy_map.py
19
- include src/xython/xy_web.py
17
+ include src/xython/xylist.py
18
+ include src/xython/xymap.py
19
+ include src/xython/xyweb.py
20
20
  include src/xython/youtil.py
21
21
  include images/*
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xython
3
- Version: 3.3.3
4
- Summary: for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com
3
+ Version: 3.3.4
4
+ Summary: win32com + python + Office Automation = xython, (for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com)
5
5
  Home-page: https://www.xython.co.kr
6
6
  Author: s.j.park
7
7
  Author-email: sjpkorea@naver.com
8
8
  License: UNKNOWN
9
- Download-URL: https://github.com/sjpark/xython/archive/v3.3.3.tar.gz
9
+ Download-URL: https://github.com/sjpark/xython/archive/v3.3.4.tar.gz
10
10
  Project-URL: Documentation, https://sjpkorea.github.io/xython.github.io/
11
11
  Project-URL: Link 1, https://www.xython.co.kr
12
12
  Platform: UNKNOWN
@@ -5,13 +5,29 @@ from setuptools import setup, find_packages
5
5
  # long_description = fh.read()
6
6
  setup(
7
7
  name='xython',
8
- version='3.3.3',
8
+ version='3.3.4',
9
9
  url='https://www.xython.co.kr',
10
- install_requires=['' ],
11
- download_url='https://github.com/sjpark/xython/archive/v3.3.3.tar.gz',
10
+ install_requires=['pandas',
11
+ 'Pillow',
12
+ 'pywin32',
13
+ 'PySide6',
14
+ 'pyperclip',
15
+ 'pywinauto',
16
+ 'chardet',
17
+ 'pygetwindow',
18
+ 'psutil',
19
+ 'paho-mqtt',
20
+ 'korean_lunar_calendar',
21
+ 'arrow',
22
+ 'folium',
23
+ 'webbrowser',
24
+ 'selenium',
25
+ 'pytest-shutil',
26
+ ],
27
+ download_url='https://github.com/sjpark/xython/archive/v3.3.4.tar.gz',
12
28
  author='s.j.park',
13
29
  author_email='sjpkorea@naver.com',
14
- description="for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com",
30
+ description="win32com + python + Office Automation = xython, (for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com)",
15
31
  packages=find_packages("src"),
16
32
  package_dir={"": "src"},
17
33
  include_package_data=True,
@@ -1,13 +1,13 @@
1
1
  # __init__.py
2
- # Copyright (C) 2024 (sjpkorea@naver.com) and contributors
2
+ # Copyright (C) 2025 (sjpkorea@naver.com) and contributors
3
3
 
4
4
 
5
5
  import inspect
6
6
  import os
7
7
  import sys
8
8
 
9
- __version__ = '3.3.3.'
10
- real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/")
9
+ __version__ = '3.3.4.' #1
10
+ real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/") #2
11
11
  sys.path.append(real_path)
12
12
 
13
13
  try: