neuro-simulator 0.0.1__tar.gz → 0.0.2__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 (25) hide show
  1. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/PKG-INFO +1 -1
  2. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/PKG-INFO +1 -1
  3. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/setup.py +15 -8
  4. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/README.md +0 -0
  5. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/__init__.py +0 -0
  6. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/audio_synthesis.py +0 -0
  7. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/chatbot.py +0 -0
  8. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/cli.py +0 -0
  9. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/config.py +0 -0
  10. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/letta.py +0 -0
  11. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/log_handler.py +0 -0
  12. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/main.py +0 -0
  13. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/media/neuro_start.mp4 +0 -0
  14. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/process_manager.py +0 -0
  15. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/settings.yaml.example +0 -0
  16. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/shared_state.py +0 -0
  17. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/stream_chat.py +0 -0
  18. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/stream_manager.py +0 -0
  19. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator/websocket_manager.py +0 -0
  20. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/SOURCES.txt +0 -0
  21. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/dependency_links.txt +0 -0
  22. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/entry_points.txt +0 -0
  23. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/requires.txt +0 -0
  24. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/neuro_simulator.egg-info/top_level.txt +0 -0
  25. {neuro_simulator-0.0.1 → neuro_simulator-0.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuro-simulator
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Neuro Simulator Server
5
5
  Home-page: https://github.com/Moha-Master/neuro-simulator
6
6
  Author: Moha-Master
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuro-simulator
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Neuro Simulator Server
5
5
  Home-page: https://github.com/Moha-Master/neuro-simulator
6
6
  Author: Moha-Master
@@ -9,17 +9,24 @@ if os.path.exists(readme_path):
9
9
  else:
10
10
  long_description = "A simulator for Neuro-Sama's streaming behavior"
11
11
 
12
- # Read requirements.txt
13
- requirements_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
14
- if os.path.exists(requirements_path):
15
- with open(requirements_path, "r", encoding="utf-8") as fh:
16
- requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
17
- else:
18
- requirements = []
12
+ # Define requirements directly
13
+ requirements = [
14
+ "fastapi",
15
+ "uvicorn",
16
+ "google-genai",
17
+ "azure-cognitiveservices-speech",
18
+ "letta-client",
19
+ "openai",
20
+ "pyyaml",
21
+ "pydantic",
22
+ "jinja2",
23
+ "python-multipart",
24
+ "mutagen",
25
+ ]
19
26
 
20
27
  setup(
21
28
  name="neuro-simulator",
22
- version="0.0.1", # First release
29
+ version="0.0.2", # Updated version
23
30
  author="Moha-Master",
24
31
  author_email="hongkongreporter@outlook.com",
25
32
  description="Neuro Simulator Server",