Dojical 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 (42) hide show
  1. dojical-1.0.0/PKG-INFO +16 -0
  2. dojical-1.0.0/README.md +3 -0
  3. dojical-1.0.0/pyproject.toml +49 -0
  4. dojical-1.0.0/setup.cfg +4 -0
  5. dojical-1.0.0/src/Dojical/__init__.py +0 -0
  6. dojical-1.0.0/src/Dojical/scripts/__init__.py +5 -0
  7. dojical-1.0.0/src/Dojical/scripts/bible.txt +1 -0
  8. dojical-1.0.0/src/Dojical/scripts/data/acadlist.json +1 -0
  9. dojical-1.0.0/src/Dojical/scripts/data/biology1.json +1 -0
  10. dojical-1.0.0/src/Dojical/scripts/data/chemistry1.json +1 -0
  11. dojical-1.0.0/src/Dojical/scripts/data/chi_chars.json +1 -0
  12. dojical-1.0.0/src/Dojical/scripts/data/degrees1.json +1 -0
  13. dojical-1.0.0/src/Dojical/scripts/data/dhammapada1.json +1 -0
  14. dojical-1.0.0/src/Dojical/scripts/data/diction.json +1 -0
  15. dojical-1.0.0/src/Dojical/scripts/data/fcci.json +1 -0
  16. dojical-1.0.0/src/Dojical/scripts/data/hospitals.json +3652 -0
  17. dojical-1.0.0/src/Dojical/scripts/data/jamo.json +1 -0
  18. dojical-1.0.0/src/Dojical/scripts/data/katakana.json +1 -0
  19. dojical-1.0.0/src/Dojical/scripts/data/koran1.json +1 -0
  20. dojical-1.0.0/src/Dojical/scripts/data/legal_terms1.json +1 -0
  21. dojical-1.0.0/src/Dojical/scripts/data/medicals1.json +1 -0
  22. dojical-1.0.0/src/Dojical/scripts/data/mims.json +1 -0
  23. dojical-1.0.0/src/Dojical/scripts/data/proverbs.json +1 -0
  24. dojical-1.0.0/src/Dojical/scripts/data/psychology1.json +1 -0
  25. dojical-1.0.0/src/Dojical/scripts/data/science1.json +1 -0
  26. dojical-1.0.0/src/Dojical/scripts/data/strains.json +2209 -0
  27. dojical-1.0.0/src/Dojical/scripts/data/tracks.json +1 -0
  28. dojical-1.0.0/src/Dojical/scripts/data/verses1.json +1 -0
  29. dojical-1.0.0/src/Dojical/scripts/data_loader.py +33 -0
  30. dojical-1.0.0/src/Dojical/scripts/keys.py +97 -0
  31. dojical-1.0.0/src/Dojical/scripts/lpro.py +9475 -0
  32. dojical-1.0.0/src/Dojical/scripts/lpro_s.py +7125 -0
  33. dojical-1.0.0/src/Dojical/scripts/main.py +26 -0
  34. dojical-1.0.0/src/Dojical/scripts/scmpy.py +2567 -0
  35. dojical-1.0.0/src/Dojical/scripts/session.py +2 -0
  36. dojical-1.0.0/src/Dojical/scripts/version_checker.py +76 -0
  37. dojical-1.0.0/src/Dojical.egg-info/PKG-INFO +16 -0
  38. dojical-1.0.0/src/Dojical.egg-info/SOURCES.txt +40 -0
  39. dojical-1.0.0/src/Dojical.egg-info/dependency_links.txt +1 -0
  40. dojical-1.0.0/src/Dojical.egg-info/entry_points.txt +14 -0
  41. dojical-1.0.0/src/Dojical.egg-info/requires.txt +5 -0
  42. dojical-1.0.0/src/Dojical.egg-info/top_level.txt +1 -0
dojical-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: Dojical
3
+ Version: 1.0.0
4
+ Summary: Dojical - derived from NeonBunny
5
+ Author-email: tderk <usvu.tech@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest; extra == "dev"
11
+ Requires-Dist: black; extra == "dev"
12
+ Requires-Dist: flake8; extra == "dev"
13
+
14
+ # Dojical
15
+
16
+ Derived from NeonBunny. A Life program by tderk, originally LPro.py and Destiny [2024].
@@ -0,0 +1,3 @@
1
+ # Dojical
2
+
3
+ Derived from NeonBunny. A Life program by tderk, originally LPro.py and Destiny [2024].
@@ -0,0 +1,49 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "Dojical"
7
+ version = "1.0.0"
8
+ description = "Dojical - derived from NeonBunny"
9
+ requires-python = ">=3.8"
10
+ readme = "README.md"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "tderk", email = "usvu.tech@gmail.com" }
14
+ ]
15
+
16
+ [project.scripts]
17
+ Dojical = "Dojical.scripts.main:run"
18
+ dojical = "Dojical.scripts.main:run"
19
+ dojic = "Dojical.scripts.main:run"
20
+ cij = "Dojical.scripts.main:run"
21
+ djcl = "Dojical.scripts.main:run"
22
+ doji = "Dojical.scripts.main:run"
23
+ cal = "Dojical.scripts.main:run"
24
+
25
+ nibbler = "Dojical.scripts.lpro:main"
26
+ nibble = "Dojical.scripts.lpro_s:main"
27
+
28
+ NB = "Dojical.scripts.main:run"
29
+ nb = "Dojical.scripts.main:run"
30
+
31
+ nblr = "Dojical.scripts.lpro:main"
32
+ nbl = "Dojical.scripts.lpro_s:main"
33
+
34
+ [tool.setuptools]
35
+ package-dir = {"" = "src"}
36
+
37
+ [tool.setuptools.packages.find]
38
+ where = ["src"]
39
+ include = ["Dojical*", "Dojical.*"]
40
+ exclude = ["tests*", "docs*", "venv*", "build*", "dist*", "*test*"]
41
+
42
+ [tool.setuptools.package-data]
43
+ "Dojical" = ["py.typed"]
44
+ "Dojical.scripts" = ["*.txt", "*.md", "*.json", "data/*", "logs/*"]
45
+
46
+ dependencies = []
47
+
48
+ [project.optional-dependencies]
49
+ dev = ["pytest", "black", "flake8"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,5 @@
1
+ import sys
2
+ import os
3
+
4
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
5
+