all repos — albus @ e8a05b5fc1f191a9c57c6d985dae93e65c150baf

add requirements.txt
Marco Andronaco andronacomarco@gmail.com
Sun, 26 May 2024 11:41:53 +0200
commit

e8a05b5fc1f191a9c57c6d985dae93e65c150baf

parent

5a2dcfa404e4cb3ac4872f8ae6457254434a33fa

3 files changed, 10 insertions(+), 5 deletions(-)

jump to
M .gitignore.gitignore

@@ -1,3 +1,2 @@

__pycache__ .env -requirements.txt
M MakefileMakefile

@@ -15,10 +15,6 @@ # Build the Docker image

build: $(REQUIREMENTS) docker build -t $(IMAGE_NAME) . -# Clean up the requirements.txt file -clean: - rm -f $(REQUIREMENTS) - # Utility target to run the Docker container run: $(ENV_FILE) docker-compose up -d
A requirements.txt

@@ -0,0 +1,10 @@

+anyio==4.3.0 ; python_version >= "3.12" and python_version < "4.0" +certifi==2024.2.2 ; python_version >= "3.12" and python_version < "4.0" +h11==0.14.0 ; python_version >= "3.12" and python_version < "4.0" +httpcore==1.0.5 ; python_version >= "3.12" and python_version < "4.0" +httpx==0.27.0 ; python_version >= "3.12" and python_version < "4.0" +idna==3.7 ; python_version >= "3.12" and python_version < "4.0" +pypandoc==1.13 ; python_version >= "3.12" and python_version < "4.0" +python-dotenv==1.0.1 ; python_version >= "3.12" and python_version < "4.0" +python-telegram-bot==21.2 ; python_version >= "3.12" and python_version < "4.0" +sniffio==1.3.1 ; python_version >= "3.12" and python_version < "4.0"