PyTypeFx 0.1.1__tar.gz → 2.1.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 (44) hide show
  1. {pytypefx-0.1.1 → pytypefx-2.1.0}/LICENSE +1 -1
  2. pytypefx-2.1.0/PKG-INFO +23 -0
  3. pytypefx-2.1.0/PyTypeFx.egg-info/PKG-INFO +23 -0
  4. pytypefx-2.1.0/PyTypeFx.egg-info/SOURCES.txt +29 -0
  5. pytypefx-2.1.0/PyTypeFx.egg-info/entry_points.txt +2 -0
  6. pytypefx-2.1.0/PyTypeFx.egg-info/requires.txt +3 -0
  7. pytypefx-2.1.0/PyTypeFx.egg-info/top_level.txt +2 -0
  8. pytypefx-2.1.0/README.md +648 -0
  9. {pytypefx-0.1.1 → pytypefx-2.1.0}/setup.py +5 -7
  10. pytypefx-2.1.0/tests/__init__.py +0 -0
  11. pytypefx-2.1.0/tests/conftest.py +26 -0
  12. pytypefx-2.1.0/tests/test_banners.py +453 -0
  13. pytypefx-2.1.0/tests/test_colors.py +146 -0
  14. pytypefx-2.1.0/tests/test_decorator.py +63 -0
  15. pytypefx-2.1.0/tests/test_effects.py +22 -0
  16. pytypefx-2.1.0/tests/test_styles.py +250 -0
  17. pytypefx-2.1.0/tests/test_utility.py +115 -0
  18. pytypefx-2.1.0/tests/test_writers.py +388 -0
  19. pytypefx-2.1.0/typefx/__init__.py +606 -0
  20. pytypefx-2.1.0/typefx/_types.py +16 -0
  21. pytypefx-2.1.0/typefx/banners.py +1264 -0
  22. pytypefx-2.1.0/typefx/cli.py +71 -0
  23. pytypefx-2.1.0/typefx/colors.py +371 -0
  24. {pytypefx-0.1.1/PyTypeFx → pytypefx-2.1.0/typefx}/constant.py +6 -4
  25. pytypefx-2.1.0/typefx/decorator.py +82 -0
  26. pytypefx-2.1.0/typefx/effects.py +80 -0
  27. pytypefx-2.1.0/typefx/styles.py +172 -0
  28. pytypefx-2.1.0/typefx/utility.py +454 -0
  29. pytypefx-2.1.0/typefx/writers.py +1207 -0
  30. pytypefx-0.1.1/PKG-INFO +0 -213
  31. pytypefx-0.1.1/PyTypeFx/__init__.py +0 -286
  32. pytypefx-0.1.1/PyTypeFx/cli.py +0 -49
  33. pytypefx-0.1.1/PyTypeFx/colors.py +0 -266
  34. pytypefx-0.1.1/PyTypeFx/decorator.py +0 -81
  35. pytypefx-0.1.1/PyTypeFx/effects.py +0 -69
  36. pytypefx-0.1.1/PyTypeFx/utility.py +0 -284
  37. pytypefx-0.1.1/PyTypeFx/writers.py +0 -621
  38. pytypefx-0.1.1/PyTypeFx.egg-info/PKG-INFO +0 -213
  39. pytypefx-0.1.1/PyTypeFx.egg-info/SOURCES.txt +0 -16
  40. pytypefx-0.1.1/PyTypeFx.egg-info/entry_points.txt +0 -2
  41. pytypefx-0.1.1/PyTypeFx.egg-info/top_level.txt +0 -1
  42. pytypefx-0.1.1/README.md +0 -184
  43. {pytypefx-0.1.1 → pytypefx-2.1.0}/PyTypeFx.egg-info/dependency_links.txt +0 -0
  44. {pytypefx-0.1.1 → pytypefx-2.1.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 the TypeFx authors
3
+ Copyright (c) 2026 the PyTypeFx authors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyTypeFx
3
+ Version: 2.1.0
4
+ Author: RK RIAD KHAN
5
+ Author-email: rkriad585@gmail.com
6
+ License: MIT
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.7
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.7
15
+ License-File: LICENSE
16
+ Requires-Dist: typing_extensions; python_version < "3.8"
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: license
21
+ Dynamic: license-file
22
+ Dynamic: requires-dist
23
+ Dynamic: requires-python
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyTypeFx
3
+ Version: 2.1.0
4
+ Author: RK RIAD KHAN
5
+ Author-email: rkriad585@gmail.com
6
+ License: MIT
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.7
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.7
15
+ License-File: LICENSE
16
+ Requires-Dist: typing_extensions; python_version < "3.8"
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: license
21
+ Dynamic: license-file
22
+ Dynamic: requires-dist
23
+ Dynamic: requires-python
@@ -0,0 +1,29 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ PyTypeFx.egg-info/PKG-INFO
5
+ PyTypeFx.egg-info/SOURCES.txt
6
+ PyTypeFx.egg-info/dependency_links.txt
7
+ PyTypeFx.egg-info/entry_points.txt
8
+ PyTypeFx.egg-info/requires.txt
9
+ PyTypeFx.egg-info/top_level.txt
10
+ tests/__init__.py
11
+ tests/conftest.py
12
+ tests/test_banners.py
13
+ tests/test_colors.py
14
+ tests/test_decorator.py
15
+ tests/test_effects.py
16
+ tests/test_styles.py
17
+ tests/test_utility.py
18
+ tests/test_writers.py
19
+ typefx/__init__.py
20
+ typefx/_types.py
21
+ typefx/banners.py
22
+ typefx/cli.py
23
+ typefx/colors.py
24
+ typefx/constant.py
25
+ typefx/decorator.py
26
+ typefx/effects.py
27
+ typefx/styles.py
28
+ typefx/utility.py
29
+ typefx/writers.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ typefx = typefx.cli:main
@@ -0,0 +1,3 @@
1
+
2
+ [:python_version < "3.8"]
3
+ typing_extensions
@@ -0,0 +1,2 @@
1
+ tests
2
+ typefx