forked from ranjan-mohanty/vfs-appointment-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 972 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Project metadata
[tool.poetry]
name = "vfs-appointment-bot"
version = "1.1.1"
description = "VFS Appointment Bot - This script automates checking for appointments at VFS Global offices in a specified country."
authors = ["Ranjan Mohanty <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["vfs", "vfs-bot", "vfs-appointment-bot", "visa-appointment-bot"]
# URLs
[tool.poetry.urls]
repository = "https://github.com/ranjan-mohanty/vfs-appointment-bot/blob/main/README.md"
homepage = "https://github.com/ranjan-mohanty/vfs-appointment-bot/blob/main"
# Build System
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Dependencies
[tool.poetry.dependencies]
python = "^3.9"
playwright = "^1.43.0"
playwright-stealth = "^1.0.6"
twilio = "^9.0.4"
tqdm = "^4.66.2"
[tool.poetry.dev-dependencies]
flake8 = "^7.0.0"
black = "^24.4.2"
#Entry points
[tool.poetry.scripts]
vfs-appointment-bot = "vfs_appointment_bot.main:main"