randusertry commited on
Commit
b752fdb
·
verified ·
1 Parent(s): 304687a

Upload 2 files

Browse files
Files changed (2) hide show
  1. manage.py +19 -0
  2. requirements.txt +15 -0
manage.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ import os
3
+ import sys
4
+
5
+ def main():
6
+ """Run administrative tasks."""
7
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
8
+ try:
9
+ from django.core.management import execute_from_command_line
10
+ except ImportError as exc:
11
+ raise ImportError(
12
+ "Couldn't import Django. Are you sure it's installed and "
13
+ "available on your PYTHONPATH environment variable? Did you "
14
+ "forget to activate a virtual environment?"
15
+ ) from exc
16
+ execute_from_command_line(sys.argv)
17
+
18
+ if __name__ == '__main__':
19
+ main()
requirements.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ django
2
+ dj-database-url
3
+ django-environ
4
+ python-telegram-bot[job-queue]
5
+ huggingface_hub
6
+ apscheduler
7
+ python-dotenv
8
+ psycopg2-binary
9
+ mcp
10
+ requests
11
+ httpx==0.27.2
12
+ mistral_inference
13
+ pycryptodome
14
+ Pillow
15
+