michael-agent 1.0.3__tar.gz → 1.0.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 (45) hide show
  1. michael_agent-1.0.4/MANIFEST.in +4 -0
  2. {michael_agent-1.0.3 → michael_agent-1.0.4}/PKG-INFO +1 -1
  3. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent.egg-info/PKG-INFO +1 -1
  4. {michael_agent-1.0.3 → michael_agent-1.0.4}/setup.py +1 -1
  5. michael_agent-1.0.3/MANIFEST.in +0 -3
  6. {michael_agent-1.0.3 → michael_agent-1.0.4}/README.md +0 -0
  7. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/__init__.py +0 -0
  8. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/config/__init__.py +0 -0
  9. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/config/settings.py +0 -0
  10. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/__init__.py +0 -0
  11. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/app.py +0 -0
  12. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/static/__init__.py +0 -0
  13. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/static/styles.css +0 -0
  14. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/__init__.py +0 -0
  15. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/career_portal.html +0 -0
  16. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/dashboard.html +0 -0
  17. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/jd_creation.html +0 -0
  18. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/resume_scoring.html +0 -0
  19. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/dashboard/templates/upload_resume.html +0 -0
  20. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/__init__.py +0 -0
  21. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/graph_builder.py +0 -0
  22. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/__init__.py +0 -0
  23. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/assessment_handler.py +0 -0
  24. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/jd_generator.py +0 -0
  25. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/jd_poster.py +0 -0
  26. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/question_generator.py +0 -0
  27. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/recruiter_notifier.py +0 -0
  28. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/resume_analyzer.py +0 -0
  29. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/resume_ingestor.py +0 -0
  30. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/langgraph_workflow/nodes/sentiment_analysis.py +0 -0
  31. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/main.py +0 -0
  32. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/monitor.py +0 -0
  33. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/__init__.py +0 -0
  34. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/email_utils.py +0 -0
  35. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/id_mapper.py +0 -0
  36. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/jd_utils.py +0 -0
  37. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/lms_api.py +0 -0
  38. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/logging_utils.py +0 -0
  39. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/monitor_utils.py +0 -0
  40. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent/utils/node_tracer.py +0 -0
  41. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent.egg-info/SOURCES.txt +0 -0
  42. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent.egg-info/dependency_links.txt +0 -0
  43. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent.egg-info/requires.txt +0 -0
  44. {michael_agent-1.0.3 → michael_agent-1.0.4}/michael_agent.egg-info/top_level.txt +0 -0
  45. {michael_agent-1.0.3 → michael_agent-1.0.4}/setup.cfg +0 -0
@@ -0,0 +1,4 @@
1
+ include README.md
2
+ recursive-include michael_agent/dashboard/templates *
3
+ recursive-include michael_agent/dashboard/static *
4
+ recursive-include michael_agent/requirements.txt
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: michael_agent
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: SmartRecruitAgent - A recruitment automation library
5
5
  Home-page: https://github.com/yourusername/agent
6
6
  Author: Michael Jone
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: michael_agent
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: SmartRecruitAgent - A recruitment automation library
5
5
  Home-page: https://github.com/yourusername/agent
6
6
  Author: Michael Jone
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="michael_agent",
5
- version="1.0.3",
5
+ version="1.0.4",
6
6
  description="SmartRecruitAgent - A recruitment automation library",
7
7
  long_description=open("README.md").read(),
8
8
  long_description_content_type="text/markdown",
@@ -1,3 +0,0 @@
1
- include README.md
2
- recursive-include michael_agent/dashboard/templates *
3
- recursive-include michael_agent/dashboard/static *
File without changes
File without changes