xython 3.3.2__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 (34) hide show
  1. {xython-3.3.2 → xython-3.3.4}/MANIFEST.in +3 -3
  2. {xython-3.3.2/src/xython.egg-info → xython-3.3.4}/PKG-INFO +3 -3
  3. {xython-3.3.2 → xython-3.3.4}/setup.py +20 -4
  4. {xython-3.3.2 → xython-3.3.4}/src/xython/__init__.py +3 -3
  5. {xython-3.3.2 → xython-3.3.4}/src/xython/anydb.py +842 -340
  6. {xython-3.3.2 → xython-3.3.4}/src/xython/basic_data.py +1487 -721
  7. xython-3.3.4/src/xython/basic_data_for_han.py +2043 -0
  8. {xython-3.3.2 → xython-3.3.4}/src/xython/ganada.py +580 -272
  9. {xython-3.3.2 → xython-3.3.4}/src/xython/han.py +1617 -590
  10. {xython-3.3.2 → xython-3.3.4}/src/xython/jfinder.py +512 -403
  11. {xython-3.3.2 → xython-3.3.4}/src/xython/mailmail.py +864 -648
  12. xython-3.3.4/src/xython/mygrid.py +3814 -0
  13. {xython-3.3.2 → xython-3.3.4}/src/xython/pcell.py +5832 -5617
  14. {xython-3.3.2 → xython-3.3.4}/src/xython/pcell_event.py +266 -40
  15. {xython-3.3.2 → xython-3.3.4}/src/xython/pyclick.py +219 -23
  16. {xython-3.3.2 → xython-3.3.4}/src/xython/pynal.py +912 -548
  17. xython-3.3.4/src/xython/scolor.py +3140 -0
  18. xython-3.3.2/src/xython/xy_list.py → xython-3.3.4/src/xython/xylist.py +222 -94
  19. xython-3.3.4/src/xython/xymap.py +1675 -0
  20. xython-3.3.2/src/xython/xy_web.py → xython-3.3.4/src/xython/xyweb.py +418 -75
  21. {xython-3.3.2 → xython-3.3.4}/src/xython/youtil.py +3541 -4073
  22. {xython-3.3.2 → xython-3.3.4/src/xython.egg-info}/PKG-INFO +3 -3
  23. {xython-3.3.2 → xython-3.3.4}/src/xython.egg-info/SOURCES.txt +5 -3
  24. xython-3.3.4/src/xython.egg-info/requires.txt +16 -0
  25. xython-3.3.2/src/xython/basic_data_for_han.py +0 -2407
  26. xython-3.3.2/src/xython/scolor.py +0 -1833
  27. xython-3.3.2/src/xython/xy_map.py +0 -965
  28. {xython-3.3.2 → xython-3.3.4}/README.md +0 -0
  29. {xython-3.3.2 → xython-3.3.4}/requirements.txt +0 -0
  30. {xython-3.3.2 → xython-3.3.4}/setup.cfg +0 -0
  31. {xython-3.3.2 → xython-3.3.4}/src/xython/basic_data_for_xymap.py +0 -0
  32. {xython-3.3.2 → xython-3.3.4}/src/xython.egg-info/dependency_links.txt +0 -0
  33. {xython-3.3.2 → xython-3.3.4}/src/xython.egg-info/not-zip-safe +0 -0
  34. {xython-3.3.2 → 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.2
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.2.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.2',
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.2.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.2.'
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: